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 834cf6d commit 5ac2140Copy full SHA for 5ac2140
bin/commands/runs.js
@@ -136,7 +136,9 @@ module.exports = function run(args) {
136
await new Promise(resolve => setTimeout(resolve, 5000));
137
138
// download build artifacts
139
- await downloadBuildArtifacts(bsConfig, data.build_id, args);
+ if (!utils.isUndefined(bsConfig.run_settings.downloads) && bsConfig.run_settings.downloads.length) {
140
+ await downloadBuildArtifacts(bsConfig, data.build_id, args);
141
+ }
142
143
// Generate custom report!
144
reportGenerator(bsConfig, data.build_id, args, function(){
0 commit comments