xci: xci-deploy.sh: Fix variable names for bifrost and OSA 09/43909/1
authorMarkos Chandras <mchandras@suse.de>
Mon, 2 Oct 2017 15:14:16 +0000 (16:14 +0100)
committerMarkos Chandras <mchandras@suse.de>
Mon, 2 Oct 2017 15:15:27 +0000 (16:15 +0100)
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>
xci/xci-deploy.sh

index fd3849b..90133f8 100755 (executable)
@@ -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