From 96f9113bf9602453512fcdf2ac55ade2060907be Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 14 Oct 2019 19:02:35 +0300 Subject: [PATCH] [deploy] changed path to app extra config --- build/Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 436f1fdfc..c18255329 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -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'] + '/' + configFile)) + grunt.file.exists(process.env['BRANDING_PATH'] + '/web-apps-pro/build/' + configFile)) { - var _extConfig = require(process.env['BRANDING_PATH'] + '/' + configFile); + var _extConfig = require(process.env['BRANDING_PATH'] + '/web-apps-pro/build/' + configFile); } function _merge(target, ...sources) {