Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
award999 committed Feb 10, 2025
1 parent 65f8bc7 commit a91b7cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .vscode-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const launchArgs = [
if (dataDir) {
launchArgs.push("--user-data-dir", dataDir);
}
// GPU hardware acceleration not working on Darwin for intel
if (process.platform === "darwin" && process.arch === "x64") {
launchArgs.push("--disable-gpu");
}
Expand Down
1 change: 0 additions & 1 deletion docker/test-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,4 @@ export GIT_CONFIG_VALUE_0="$PWD/hooks"
# Need to set proxy to download VS Code
export npm_config_https_proxy="$HTTPS_PROXY"

# export DEVELOPER_DIR=/Applications/Xcode-beta.app
VSCODE_DATA_DIR="$USER_DATA" CI=1 FAST_TEST_RUN=1 npm run coverage -- --coverage-output "$PWD/coverage"
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { showReloadExtensionNotification } from "./ui/ReloadExtension";
import { checkAndWarnAboutWindowsSymlinks } from "./ui/win32";
import { SwiftEnvironmentVariablesManager, SwiftTerminalProfileProvider } from "./terminal";
import { resolveFolderDependencies } from "./commands/dependencies/resolve";
// import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";
import { SelectedXcodeWatcher } from "./toolchain/SelectedXcodeWatcher";

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

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

0 comments on commit a91b7cc

Please sign in to comment.