Use the proper variable name

This commit is contained in:
Emanuele Zattin 2017-10-09 16:01:25 +02:00
parent 2d7822d971
commit e2588341d5
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -62,7 +62,7 @@ stage('build') {
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'docs/output', reportFiles: 'index.html', reportName: 'Docs'])
}),
linux_node_debug: doDockerBuild('node Debug', {
withCredentials([string(credentialsId: 'codecov-token-js', variable: 'codecov-token')]) {
withCredentials([string(credentialsId: 'codecov-token-js', variable: 'CODECOV_TOKEN')]) {
sh 'tests/node_modules/codecov/bin/codecov'
}
}),