diff options
author | 2017-07-07 19:25:28 +0000 | |
---|---|---|
committer | 2017-07-07 19:25:28 +0000 | |
commit | 4aa57598753b07ed62b3524766ef4d158ba9c5fd (patch) | |
tree | c70335c7dcfa03c879fc29dc303af7ae73d82d33 /prototypes | |
parent | 7a17287a071eec33bc0cd542230dce9d2dc8129b (diff) | |
parent | 81cf0fad48c181a22e65ebda341a8f8ea0c08686 (diff) |
Merge "prototypes: xci: xci-deploy: Set default value for devel parameters"
Diffstat (limited to 'prototypes')
-rwxr-xr-x | prototypes/xci/xci-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/xci/xci-deploy.sh b/prototypes/xci/xci-deploy.sh index a72c9274a..d71125651 100755 --- a/prototypes/xci/xci-deploy.sh +++ b/prototypes/xci/xci-deploy.sh @@ -42,7 +42,7 @@ source $XCI_PATH/config/env-vars #------------------------------------------------------------------------------- user_local_dev_vars=(OPNFV_RELENG_DEV_PATH OPNFV_OSA_DEV_PATH OPNFV_BIFROST_DEV_PATH) for local_user_var in ${user_local_dev_vars[@]}; do - [[ -n ${!local_user_var} ]] && export $local_user_var=${!local_user_var%/}/ + [[ -n ${!local_user_var:-} ]] && export $local_user_var=${!local_user_var%/}/ done unset user_local_dev_vars local_user_var |