summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-02-11 20:42:58 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-02-11 20:42:58 +0000
commit27f4ec0535389014505de87039215ac2f9ac7277 (patch)
tree15bda9ac23a6286d1859ed5d3454529deac47757
parent82e32f63fd821baeddbe369d194d8c69f1cef358 (diff)
parent5097f43156fe364b4e1c04c5771f096b3ddc2059 (diff)
Merge "Fixing an incorrect variable name"
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index ad7d0d1b..39f76c03 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}}"