Skip to content

Commit 0bd5b6f

Browse files
committed
chore(hooks): gulp is lowercase
1 parent 912dceb commit 0bd5b6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function runWithGulp(argv, taskInstance){
142142
logEvents(gulp, [beforeHook, afterHook]);
143143

144144
if (gulp.tasks[beforeHook]) {
145-
console.info('\nRunning \'' + beforeHook + '\' Gulp task before ' + cmdName);
145+
console.info('\nRunning \'' + beforeHook + '\' gulp task before ' + cmdName);
146146
}
147147
return Q.nfcall(gulp.start.bind(gulp), beforeHook).then(
148148
function(){
@@ -170,7 +170,7 @@ function runWithGulp(argv, taskInstance){
170170
}
171171
).then(function(){
172172
if (gulp.tasks[afterHook]) {
173-
console.info('\nRunning \'' + afterHook + '\' Gulp task after ' + cmdName);
173+
console.info('\nRunning \'' + afterHook + '\' gulp task after ' + cmdName);
174174
}
175175
return Q.nfcall(gulp.start.bind(gulp), afterHook);
176176
});

0 commit comments

Comments
 (0)