From bb88c9cfe4c9685b03e71b68c045057c34647c88 Mon Sep 17 00:00:00 2001 From: jgallego Date: Tue, 29 Jan 2019 09:45:02 +0100 Subject: [PATCH] gulpfile back Tasks fixed for windows --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f100e66ad7..7c8ca2a979 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -48,7 +48,7 @@ function backWatch(done) { let sleepBin = isWindows ? '' : 'sleep 1 &&'; nodemon({ - exec: `${sleepBin} node --inspect ./node_modules/gulp/bin/gulp.js`, + exec: `${sleepBin}node --inspect ./node_modules/gulp/bin/gulp.js`, args: ['backOnly'], watch: backSources, done: done