aboutsummaryrefslogtreecommitdiffstats
path: root/deliveries/src/main/scripts/localize_war.sh
diff options
context:
space:
mode:
authorIkramullah, Ikram (fi241c) <fi241c@att.com>2020-11-05 01:50:41 -0500
committerIkram Ikramullah <ikram@research.att.com>2020-11-05 13:35:42 +0000
commit62bb1f83ba6658184d23bbaa465eb80011de3b2b (patch)
treeab8000203effee1cc0c42551b100e9655b2d570c /deliveries/src/main/scripts/localize_war.sh
parent5889d15158f2e9dd22155ab5693a543c4136fee8 (diff)
Fix for VID-8907.0.2
VID was using sed based replacement for the environment variables exposed to its scripts. This was causing many issus with special characters. This has been fixed. Issue-ID: VID-890 Change-Id: I17fb9621bd5b1e6f4b7278df1fd77c617ce9a26d Signed-off-by: Ikramullah, Ikram <ikram@research.att.com>
Diffstat (limited to 'deliveries/src/main/scripts/localize_war.sh')
-rwxr-xr-xdeliveries/src/main/scripts/localize_war.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/deliveries/src/main/scripts/localize_war.sh b/deliveries/src/main/scripts/localize_war.sh
deleted file mode 100755
index 29cdc5137..000000000
--- a/deliveries/src/main/scripts/localize_war.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-source /tmp/vid/localize_portal.sh $1 || {
- echo "ERROR: Localizing portal.properties failed"
- exit 1
-}
-
-source /tmp/vid/localize_quartz.sh $1 || {
- echo "ERROR: Localizing quartz.properties failed"
- exit 1
-}
-
-source /tmp/vid/localize_system.sh $1 || {
- echo "ERROR: Localizing system.properties failed"
- exit 1
-}
-
-source /tmp/vid/localize_cache.sh $1 || {
- echo "ERROR: Localizing cache.ccf failed"
- exit 1
-}
-
-source /tmp/vid/localize_asdc.sh $1 || {
- echo "ERROR: Localizing asdc.properties failed"
- exit 1
-}