summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-02-10 10:42:05 -0500
committerTim Rozet <trozet@redhat.com>2016-02-11 20:43:40 +0000
commitd7af76d260edd0daea0d8ccc3726c7971b26dde0 (patch)
tree1e292df1cefe999392ce9b068a2baf2f3946660e
parentf87aff46ff36b0fa7172dc82d3c2b5766a2eaaf4 (diff)
Fixing an incorrect variable name
Change-Id: I034bd9712ed06992dca59e2b362ef535cf3ab4d2 JIRA: APEX-96 (cherry picked from commit 5097f43156fe364b4e1c04c5771f096b3ddc2059)
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index 87787888..f80a88ab 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -194,7 +194,7 @@ for Auto-detection${reset}"
done
echo -e "${blue}INFO: Detecting Network Specific settings for: ${enabled_network}${reset}"
# detect network specific settings
- if [ -n $(eval echo \${${network}_optional_settings}) ]; then
+ if [ -n $(eval echo \${${enabled_network}_optional_settings}) ]; then
eval "network_specific_settings=\${${enabled_network}_optional_settings}"
for setting in ${network_specific_settings}; do
eval "setting_value=\${${enabled_network}_${setting}}"