Skip to content

Commit c460953

Browse files
Fix Specs Array Case for Enforce_Settings MAC
1 parent fd72daa commit c460953

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
@@ -1327,7 +1327,7 @@ exports.setEnforceSettingsConfig = (bsConfig) => {
13271327
if(specConfigs && specConfigs.includes(',')) {
13281328
specConfigs = JSON.stringify(specConfigs.split(','));
13291329
}
1330-
let spec_pattern_args = 'specPattern="'+specConfigs+'"';
1330+
let spec_pattern_args = `specPattern=${specConfigs}`;
13311331
config_args = this.isUndefined(config_args) ? spec_pattern_args : config_args + ',' + spec_pattern_args;
13321332
}
13331333
if ( this.isNotUndefined(config_args) ) bsConfig["run_settings"]["config"] = config_args;

0 commit comments

Comments
 (0)