Fix acp.min.js ENOENT error on CI tests

Hopefully
This commit is contained in:
Peter Jaszkowiak
2018-01-15 00:10:24 -07:00
parent ed9166b796
commit 7d7c51f8e9

View File

@@ -343,6 +343,11 @@ JS.buildBundle = function (target, fork, callback) {
function (next) {
getBundleScriptList(target, next);
},
function (files, next) {
mkdirp(path.join(__dirname, '../../build/public'), function (err) {
next(err, files);
});
},
function (files, next) {
var minify = global.env !== 'development';
var filePath = path.join(__dirname, '../../build/public', fileNames[target]);