X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=prototypes%2Fxci%2Fxci-deploy.sh;fp=prototypes%2Fxci%2Fxci-deploy.sh;h=a72c9274adbdc0b14dc2ac05fe7cc1bb02f0701e;hb=68412ffc734e9e34b0e4b9209bdd7b4222b2003d;hp=3a65983ac5250c350c39d3b6808bdff3db7c9a7b;hpb=c25fa35e198bb190312a1cf84569c3ebdd78b0a8;p=releng.git diff --git a/prototypes/xci/xci-deploy.sh b/prototypes/xci/xci-deploy.sh index 3a65983ac..a72c9274a 100755 --- a/prototypes/xci/xci-deploy.sh +++ b/prototypes/xci/xci-deploy.sh @@ -37,6 +37,15 @@ source "$XCI_PATH/config/${XCI_FLAVOR}-vars" # source xci configuration source $XCI_PATH/config/env-vars +#------------------------------------------------------------------------------- +# Sanitize local development environment variables +#------------------------------------------------------------------------------- +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%/}/ +done +unset user_local_dev_vars local_user_var + #------------------------------------------------------------------------------- # Log info to console #-------------------------------------------------------------------------------