summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-02-12 14:45:37 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-02-12 14:45:37 +0000
commit8ba5f69c28340c89276a14d34007b97f0d06d25c (patch)
tree396ede7a8bdcb792b7167fbc664d51f595a51dfc
parent0a3395de7c689f7849cf672da6e2d52067343982 (diff)
parentd7af76d260edd0daea0d8ccc3726c7971b26dde0 (diff)
Merge "Fixing an incorrect variable name" into stable/brahmaputra
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index a7d803d8..092f5c14 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}}"