diff --git a/grunt/tasks/build-config.js b/grunt/tasks/build-config.js index 8f79b19a1..1604af119 100644 --- a/grunt/tasks/build-config.js +++ b/grunt/tasks/build-config.js @@ -30,7 +30,14 @@ module.exports = function(grunt) { }); // remove path specific variables - const hideAttributes = ['outputdir', 'sourcedir', 'root']; + const hideAttributes = [ + 'cachepath', + 'configdir', + 'outputdir', + 'root', + 'sourcedir', + 'tempdir' + ]; hideAttributes.forEach(function(attrName) { delete buildConfig[attrName]; });