Skip to content

Commit d253999

Browse files
committed
fixing specs not showing up in params issue
1 parent 1223794 commit d253999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/helpers/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ exports.setBuildName = (bsConfig, args) => {
9696
}
9797

9898
exports.setUserSpecs = (bsConfig, args) => {
99-
if (!this.isUndefined(args.specs)) {
99+
if (!this.isUndefined(args.specs) && args.specs.length > 0 && !this.isUndefined(args.specs[0])) {
100100
bsConfig['run_settings']['specs'] = args.specs;
101101
}
102102
}

0 commit comments

Comments
 (0)