From 83d2818723a90b4de1d35116c19db036ad1cc5a3 Mon Sep 17 00:00:00 2001 From: Bachir Soussi Chiadmi Date: Sat, 20 May 2017 11:04:49 +0200 Subject: [PATCH] removed sync dependency from build in gulp file --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4f74723..c37d96a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -38,11 +38,11 @@ gulp.task('gui', function () { .pipe(gulp.dest('./assets/css/dist')); }); -gulp.task('sync', shell.task([ - './bin/sync.sh' -])); +// gulp.task('sync', shell.task([ +// './bin/sync.sh' +// ])); -gulp.task('build', ['sync'], shell.task([ +gulp.task('build', shell.task([ './bin/build.py' ]));