Skip to content

Commit 12cbfa0

Browse files
committed
which node
1 parent 8a91b44 commit 12cbfa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util/backend/npm-sanbox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export async function runInSandbox(name: string, version: string): Promise<PkgSi
1414
const whoami = await sandbox.runCommand('whoami');
1515
console.log(`Running as: ${await whoami.stdout()}`);
1616

17-
const uname = await sandbox.runCommand('uname -a');
18-
console.log(`which: ${await uname.stdout()}`);
17+
const which = await sandbox.runCommand('which node');
18+
console.log(`which: ${await which.stdout()}`);
1919

2020
const pwd = await sandbox.runCommand('pwd');
2121
console.log(`Working dir: ${await pwd.stdout()}`);

0 commit comments

Comments
 (0)