diff options
author | 2020-11-05 01:50:41 -0500 | |
---|---|---|
committer | 2020-11-05 13:35:42 +0000 | |
commit | 62bb1f83ba6658184d23bbaa465eb80011de3b2b (patch) | |
tree | ab8000203effee1cc0c42551b100e9655b2d570c /deliveries/src/main/scripts/localize_cache.sh | |
parent | 5889d15158f2e9dd22155ab5693a543c4136fee8 (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_cache.sh')
-rwxr-xr-x | deliveries/src/main/scripts/localize_cache.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/deliveries/src/main/scripts/localize_cache.sh b/deliveries/src/main/scripts/localize_cache.sh deleted file mode 100755 index 2d676c373..000000000 --- a/deliveries/src/main/scripts/localize_cache.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -FINAL_CONFIG_FILE=$1/classes/cache.ccf -TEMPLATE_CONFIG_FILE=$1/classes/cache_template.ccf - -echo "Localizing the VID cache configuration" - -mkdir -p "${CACHE_DIRECTORY}" - -sed -e 's,${CACHE_DIRECTORY},'${CACHE_DIRECTORY}',g' ${TEMPLATE_CONFIG_FILE} > ${FINAL_CONFIG_FILE} || { - echo "ERROR: Could not process template file ${TEMPLATE_CONFIG_FILE} into ${FINAL_CONFIG_FILE}" - exit 3 - } - -echo "Localized ${FINAL_CONFIG_FILE} successfully." |