From 3ce7910c4ba016299c5e0352ac4c304825b0ac60 Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Reina Date: Mon, 27 Feb 2017 13:51:23 +0100 Subject: [PATCH] Changed the reference to the path in guplfile.js to allow spaces in the local path to the repository. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 21fbdf0917..879723b7b4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -177,7 +177,7 @@ gulp.task('serve', function(cb) { script: paths.server, ext: '.jsx .js .json', ignore: paths.serverIgnore, - exec: path.join(__dirname, 'node_modules/.bin/babel-node'), + exec: path.normalize('node_modules/.bin/babel-node'), env: { NODE_ENV: process.env.NODE_ENV || 'development', DEBUG: process.env.DEBUG || 'fcc:*',