Skip to content

Commit a91b7cc

Browse files
committed
Fix review comments
1 parent 65f8bc7 commit a91b7cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.vscode-test.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const launchArgs = [
3939
if (dataDir) {
4040
launchArgs.push("--user-data-dir", dataDir);
4141
}
42+
// GPU hardware acceleration not working on Darwin for intel
4243
if (process.platform === "darwin" && process.arch === "x64") {
4344
launchArgs.push("--disable-gpu");
4445
}

docker/test-macos.sh

-1
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,4 @@ export GIT_CONFIG_VALUE_0="$PWD/hooks"
9191
# Need to set proxy to download VS Code
9292
export npm_config_https_proxy="$HTTPS_PROXY"
9393

94-
# export DEVELOPER_DIR=/Applications/Xcode-beta.app
9594
VSCODE_DATA_DIR="$USER_DATA" CI=1 FAST_TEST_RUN=1 npm run coverage -- --coverage-output "$PWD/coverage"

src/extension.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { showReloadExtensionNotification } from "./ui/ReloadExtension";
3838
import { checkAndWarnAboutWindowsSymlinks } from "./ui/win32";
3939
import { SwiftEnvironmentVariablesManager, SwiftTerminalProfileProvider } from "./terminal";
4040
import { resolveFolderDependencies } from "./commands/dependencies/resolve";
41-
// import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";
41+
import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";
4242

4343
/**
4444
* External API as exposed by the extension. Can be queried by other extensions
@@ -131,7 +131,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<Api> {
131131
if (!configuration.debugger.disable) {
132132
context.subscriptions.push(registerDebugger(workspaceContext));
133133
}
134-
// context.subscriptions.push(new SelectedXcodeWatcher(outputChannel));
134+
context.subscriptions.push(new SelectedXcodeWatcher(outputChannel));
135135

136136
// listen for workspace folder changes and active text editor changes
137137
workspaceContext.setupEventListeners();

0 commit comments

Comments
 (0)