Add missing return in the hope to fix #140 (untested)

This commit is contained in:
Norbert Renner 2019-05-08 19:27:54 +02:00
parent aa6588d40b
commit 5f89287a97

View file

@ -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));
});