Skip to content

Commit 9ed4879

Browse files
scottaddieSBoudrias
authored andcommittedJun 16, 2016
Chain install commands with double ampersand (#944)
1 parent 035ce57 commit 9ed4879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/actions/install.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ install.installDependencies = function (options) {
124124
var tplValues = _.extend({
125125
skipInstall: false
126126
}, this.options, {
127-
commands: chalk.yellow.bold(msg.commands.join(' & '))
127+
commands: chalk.yellow.bold(msg.commands.join(' && '))
128128
});
129129
this.log(msg.template(tplValues));
130130
}

0 commit comments

Comments
 (0)
Please sign in to comment.