adopt new module locations (#177472)

Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
This commit is contained in:
João Moreno
2023-03-17 15:34:17 +01:00
committed by GitHub
parent e88eb65966
commit 5b6cd9c3c7
12 changed files with 198 additions and 218 deletions
+1 -1
View File
@@ -1225,7 +1225,7 @@ export class CodeApplication extends Disposable {
const win32MutexName = this.productService.win32MutexName;
if (isWindows && win32MutexName) {
try {
const WindowsMutex = await import('windows-mutex');
const WindowsMutex = await import('@vscode/windows-mutex');
const mutex = new WindowsMutex.Mutex(win32MutexName);
once(this.lifecycleMainService.onWillShutdown)(() => mutex.release());
} catch (error) {