Browse Source

removed sync dependency from build in gulp file

Bachir Soussi Chiadmi 6 years ago
parent
commit
83d2818723
1 changed files with 4 additions and 4 deletions
  1. 4 4
      gulpfile.js

+ 4 - 4
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'
 ]));