diff options
author | Dan Radez <dradez@redhat.com> | 2016-02-10 10:42:05 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-02-10 10:42:05 -0500 |
commit | 5097f43156fe364b4e1c04c5771f096b3ddc2059 (patch) | |
tree | e8e9e837c86fa645df86c88a13717aa093bc6fb4 | |
parent | 2f04f946396c2a10b57d859516af8907b48857de (diff) |
Fixing an incorrect variable name
Change-Id: I034bd9712ed06992dca59e2b362ef535cf3ab4d2
JIRA: APEX-96
-rwxr-xr-x | ci/deploy.sh | 2 |
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}}" |