Changed the reference to the path in guplfile.js to allow spaces in the local path to the repository.

This commit is contained in:
Daniel Gonzalez Reina
2017-02-27 13:51:23 +01:00
parent 8804605af0
commit 3ce7910c4b

View File

@ -177,7 +177,7 @@ gulp.task('serve', function(cb) {
script: paths.server, script: paths.server,
ext: '.jsx .js .json', ext: '.jsx .js .json',
ignore: paths.serverIgnore, ignore: paths.serverIgnore,
exec: path.join(__dirname, 'node_modules/.bin/babel-node'), exec: path.normalize('node_modules/.bin/babel-node'),
env: { env: {
NODE_ENV: process.env.NODE_ENV || 'development', NODE_ENV: process.env.NODE_ENV || 'development',
DEBUG: process.env.DEBUG || 'fcc:*', DEBUG: process.env.DEBUG || 'fcc:*',