Skip to content

Commit

Permalink
fix: Update codeUtil.ts to download vscode for linux-arm64 (#1161)
Browse files Browse the repository at this point in the history
Co-authored-by: timimichr <[email protected]>
  • Loading branch information
djelinek and timimichr authored Feb 27, 2024
1 parent 6d3e270 commit 4e8ad5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/codeUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export class CodeUtil {
this.cliEnv = 'ELECTRON_RUN_AS_NODE=1';

if (platform === 'linux') {
platform += arch === 'x64' ? `-${arch}` : `-ia32`;
platform += arch === 'ia32' ? '-ia32' : `-${arch}`;
} else if (platform === 'win32') {
platform += arch === 'x64' ? `-${arch}` : '';
platform += '-archive';
Expand Down

0 comments on commit 4e8ad5e

Please sign in to comment.