Skip to content

Commit bfeac82

Browse files
committed
try without du
1 parent 6b4776f commit bfeac82

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/util/backend/npm-sanbox.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ export async function runInSandbox(name: string, version: string): Promise<PkgSi
1717
const pwd = await sandbox.runCommand('pwd');
1818
console.log(`Working dir: ${await pwd.stdout()}`);
1919

20-
const dush = await sandbox.runCommand('du -sh');
21-
console.log(`du -sh: ${await dush.stdout()}`);
22-
2320
const install = await sandbox.runCommand(`npm init -y && npm install ${name}@${version}`);
2421
console.log(`npm install: ${await install.stdout()}`);
2522

0 commit comments

Comments
 (0)