Skip to content

Commit 0636e30

Browse files
author
Thomas Piccirello
committed
Increase install timeout to 30 sec
1 parent 72db35b commit 0636e30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function executeInstallSh(installPath) {
4444
// execute script
4545
await io.mkdirP(installPath);
4646
const installCommand = `${downloadPath} --debug --no-package-manager --install-path ${installPath}`
47-
stdout = execSync(installCommand, { timeout: 15000 });
47+
stdout = execSync(installCommand, { timeout: 30000 });
4848
console.log(Buffer.from(stdout).toString("utf-8"))
4949

5050
// add binary to PATH

0 commit comments

Comments
 (0)