From 5f89287a97b0534fdc3fc3e0b2567cd0a47460f5 Mon Sep 17 00:00:00 2001 From: Norbert Renner Date: Wed, 8 May 2019 19:27:54 +0200 Subject: [PATCH] Add missing return in the hope to fix #140 (untested) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 2666dee..1bbb697 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -233,7 +233,7 @@ gulp.task('bump:html', ['release:init'], function() { }); gulp.task('release:commit', ['bump'], function() { - gulp.src(['./index.html', './package.json']) + return gulp.src(['./index.html', './package.json']) .pipe(git.commit('release: '+nextVersion)); });