Skip to content

Commit adbc6b7

Browse files
author
benholloway
committed
fixed regression in init --defaults
1 parent de541db commit adbc6b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ gulp.task('init', function (done) {
227227
var tags = []
228228
.concat(cliArgs.tag) // yargs will convert multiple --tag flags to an array
229229
.filter(Boolean);
230-
templateParams = merge(cliArgs, { port: port, tags: JSON.stringify(tags) }); // must stringify lists
230+
templateParams = merge({}, cliArgs, { port: port, tags: JSON.stringify(tags) }); // must stringify lists
231231

232232
// set defaults
233233
if (cliArgs.defaults) {

0 commit comments

Comments
 (0)