diff options
author | Hansen, Tony (th1395) <th1395@att.com> | 2018-04-27 13:40:25 +0000 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2018-04-27 21:04:51 +0000 |
commit | 85b4122ade73f64d4edb0d1dddfc14280429f7cb (patch) | |
tree | 5675f624540ecba00762847ffc1f6d77de75612f /scripts | |
parent | 4fbe7212bc993529b8552938911ae3b2a2143a33 (diff) |
fix quoting issue2.0.0-ONAPbeijing2.0.0-ONAP
Change-Id: I79f112d6b33e087072c76b1aa28cb123cef9cc59
Signed-off-by: Hansen, Tony (th1395) <th1395@att.com>
Issue-ID: DCAEGEN2-478
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mvn-phase-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mvn-phase-lib.sh b/scripts/mvn-phase-lib.sh index 4a181f3..0cc2681 100644 --- a/scripts/mvn-phase-lib.sh +++ b/scripts/mvn-phase-lib.sh @@ -181,7 +181,7 @@ expand_templates() echo "====> Resolving the following template from environment variables " echo "$TEMPLATES" for KEY in $TEMPLATES; do - VALUE1=$(eval 'echo "$"'"$KEY"'"' | sed 1q) + VALUE1=$(eval 'echo "$'"$KEY"'"' | sed 1q) VALUE2=$(eval 'echo "$'"$KEY"'"' | sed -e 's/\//\\\//g' -e 's/$/\\/' -e '$s/\\$//') echo "======> Resolving template $KEY to value $VALUE1 for file $F2" |