We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d2878 commit b562807Copy full SHA for b562807
1 file changed
packages/google-cloud-dataproc/.circleci/npm-install-retry.js
@@ -6,7 +6,7 @@ let spawn = require('child_process').spawn;
6
//USE: ./index.js <ms npm can be idle> <number of attempts> [... NPM ARGS]
7
//
8
9
-let timeout = process.argv[2] || 60000;
+let timeout = process.argv[2] || process.env.NPM_INSTALL_TIMEOUT || 60000;
10
let attempts = process.argv[3] || 3;
11
let args = process.argv.slice(4);
12
if (args.length === 0) {
0 commit comments