From fa470b65d8a998c8082a8da415c81c2e0c0d771d Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Wed, 16 Nov 2016 18:20:53 +0100 Subject: [PATCH] Fix customizer relative path --- gulp/tasks/customizer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/customizer.js b/gulp/tasks/customizer.js index ea53e0ffd..f2964f58e 100644 --- a/gulp/tasks/customizer.js +++ b/gulp/tasks/customizer.js @@ -36,7 +36,7 @@ var VARIABLE_LIST; // Load the configuration file for the customizer. It's a list of modules to load and Sass variables to override gulp.task('customizer:loadConfig', function(done) { fs.readFile('customizer/config.yml', function(err, data) { - var moduleListPath = ARGS.modules || 'customizer/complete'; + var moduleListPath = ARGS.modules || '../../customizer/complete'; var moduleList = require(moduleListPath); CUSTOMIZER_CONFIG = yaml(data.toString()); -- 2.47.2