Skip to content

Commit cd48c45

Browse files
author
benholloway
committed
fix regression in defaults for init and webstorm tasks
1 parent 3f084b9 commit cd48c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/webstorm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ function setUpWebStormTask(context) {
202202
yargsInstance
203203
.strict()
204204
.wrap(80);
205-
cliArgs = yargsInstance.argv;
205+
cliArgs = validateLaunchPath(yargsInstance.argv); // cast launch flag to boolean (mutate and return)
206206

207207
gulp.task('webstorm', function (done) {
208208
console.log(hr('-', 80, 'webstorm'));

0 commit comments

Comments
 (0)