We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dfddb9 commit c2c1997Copy full SHA for c2c1997
packages/google-cloud-automl/.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