Skip to content

Commit

Permalink
Increase install timeout to 30 sec
Browse files Browse the repository at this point in the history
  • Loading branch information
Piccirello committed Nov 19, 2021
1 parent 72db35b commit 0636e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function executeInstallSh(installPath) {
// execute script
await io.mkdirP(installPath);
const installCommand = `${downloadPath} --debug --no-package-manager --install-path ${installPath}`
stdout = execSync(installCommand, { timeout: 15000 });
stdout = execSync(installCommand, { timeout: 30000 });
console.log(Buffer.from(stdout).toString("utf-8"))

// add binary to PATH
Expand Down

0 comments on commit 0636e30

Please sign in to comment.