Fix brand build

This commit is contained in:
Alexey Golubev 2020-02-03 19:27:01 +03:00
parent 0212ff96b1
commit abb13c6876

View file

@ -102,10 +102,10 @@ module.exports = function(grunt) {
}
function doRegisterInitializeAppTask(name, appName, configFile) {
if (!!process.env['BRANDING_PATH'] &&
grunt.file.exists('../' + process.env['OO_BRANDING'] + '/web-apps-pro/build/' + configFile))
if (!!process.env['OO_BRANDING'] &&
grunt.file.exists('../../' + process.env['OO_BRANDING'] + '/web-apps-pro/build/' + configFile))
{
var _extConfig = require('../' + process.env['OO_BRANDING'] + '/web-apps-pro/build/' + configFile);
var _extConfig = require('../../' + process.env['OO_BRANDING'] + '/web-apps-pro/build/' + configFile);
}
function _merge(target, ...sources) {