Fix branding build

This commit is contained in:
Alexey Golubev 2020-02-03 15:45:23 +03:00 committed by GitHub
parent 504c9d5044
commit 0212ff96b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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