We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf4769 commit 9e09d09Copy full SHA for 9e09d09
Jenkinsfile
@@ -231,11 +231,12 @@ pipeline {
231
timeout(time: 10, unit: 'MINUTES') {
232
echo "Install Zowe CLI globaly"
233
sh "rm -f .npmrc"
234
- sh("npm set registry https://registry.npmjs.org")
235
- sh("npm set @brightside:registry https://api.bintray.com/npm/ca/brightside/")
+ sh "npm set registry https://registry.npmjs.org"
+ sh "echo @brightside:registry=https://api.bintray.com/npm/ca/brightside/ >> .npmrc"
236
+ sh "echo @brightside:always-auth=false >> .npmrc"
237
- sh("npm install -g @brightside/core@lts-incremental")
238
- sh("zowe --version")
+ sh "npm install -g @brightside/core@lts-incremental"
239
+ sh "zowe --version"
240
}
241
242
0 commit comments