From abb13c68769bd3d851df711d0314b873a3a6846d Mon Sep 17 00:00:00 2001 From: Alexey Golubev Date: Mon, 3 Feb 2020 19:27:01 +0300 Subject: [PATCH] Fix brand build --- build/Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 57b20aec3..5e02bd675 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -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) {