summaryrefslogtreecommitdiffstats
path: root/xci
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-10-02 16:14:16 +0100
committerMarkos Chandras <mchandras@suse.de>2017-10-02 16:15:27 +0100
commit7a75751365e8dfee15872c3aff3c39539dcb45a2 (patch)
tree78e47588fd2565f2440775c0cd5e2079c63027da /xci
parent801ad937b0e2a65f06765f9e279ce3a6f20452e0 (diff)
xci: xci-deploy.sh: Fix variable names for bifrost and OSA
The correct variable name is OPENSTACK_{BIFROST,OSA}_DEV_PATH instead of OPNFV_{BIFROST,OSA}_DEV_PATH. JIRA: RELENG-312 Change-Id: I6c1349434d2ff8f82e1bccd1a758467c3ee0a61f Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci')
-rwxr-xr-xxci/xci-deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/xci-deploy.sh b/xci/xci-deploy.sh
index fd3849be..90133f8d 100755
--- a/xci/xci-deploy.sh
+++ b/xci/xci-deploy.sh
@@ -44,7 +44,7 @@ fi
#-------------------------------------------------------------------------------
# Sanitize local development environment variables
#-------------------------------------------------------------------------------
-user_local_dev_vars=(OPNFV_RELENG_DEV_PATH OPNFV_OSA_DEV_PATH OPNFV_BIFROST_DEV_PATH)
+user_local_dev_vars=(OPNFV_RELENG_DEV_PATH OPENSTACK_OSA_DEV_PATH OPENSTACK_BIFROST_DEV_PATH)
for local_user_var in ${user_local_dev_vars[@]}; do
[[ -n ${!local_user_var:-} ]] && export $local_user_var=${!local_user_var%/}/
done