From 7b8621da349c49a111bd6822888ce3df76c1c027 Mon Sep 17 00:00:00 2001 From: kurczews Date: Wed, 19 Sep 2018 08:17:52 +0200 Subject: Improve localize scripts Improve scripts to avoid unecessary WAR repackaging. Tomcat extracts WAR content when deployed so there is no need to repackage whole WAR (time-costly operation) in order to update template properties Issue-ID: VID-164 Change-Id: I2aa2db915ba7408cf9da51a28695c4890c369312 Signed-off-by: kurczews --- deliveries/src/main/scripts/localize_logback.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deliveries/src/main/scripts/localize_logback.sh') diff --git a/deliveries/src/main/scripts/localize_logback.sh b/deliveries/src/main/scripts/localize_logback.sh index 43798eb84..a0f177337 100755 --- a/deliveries/src/main/scripts/localize_logback.sh +++ b/deliveries/src/main/scripts/localize_logback.sh @@ -1,7 +1,7 @@ #!/bin/bash -FINAL_CONFIG_FILE=/tmp/vid/stage/WEB-INF/classes/logback.xml -TEMPLATE_CONFIG_FILE=/tmp/vid/stage/WEB-INF/classes/logback_template.xml +FINAL_CONFIG_FILE=$1/classes/logback.xml +TEMPLATE_CONFIG_FILE=$1/classes/logback_template.xml echo "Localizing the VID logback configuration" -- cgit 1.2.3-korg