We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab0bfa8 + ef1b63c commit 5746ec1Copy full SHA for 5746ec1
vscode/src/lsp/utils.ts
@@ -44,7 +44,7 @@ export const enableDisableModules = (
44
45
export const findNbcode = (extensionPath: string): string => {
46
let nbcode = os.platform() === 'win32' ?
47
- os.arch() === 'x64' ? 'nbcode64.exe' : 'nbcode.exe'
+ os.arch() === 'x64' || os.arch() === 'arm64' ? 'nbcode64.exe' : 'nbcode.exe'
48
: 'nbcode.sh';
49
let nbcodePath = path.join(extensionPath, "nbcode", "bin", nbcode);
50
0 commit comments