From: Nicolas Coden Date: Wed, 16 Nov 2016 17:20:53 +0000 (+0100) Subject: Fix customizer relative path X-Git-Tag: v6.3-rc1~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa470b65d8a998c8082a8da415c81c2e0c0d771d;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix customizer relative path --- 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());