Skip to content

Commit a0162ec

Browse files
committed
Add missing env
1 parent 7682992 commit a0162ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class PlatformInformation {
173173
}
174174

175175
private static async GetUnixArchitecture(): Promise<string> {
176-
const architecture = (await util.execChildProcess('uname -m', __dirname)).trim();
176+
const architecture = (await util.execChildProcess('uname -m', __dirname, process.env)).trim();
177177
if (architecture === 'aarch64') {
178178
return 'arm64';
179179
}

0 commit comments

Comments
 (0)