diff options
author | Stuart Mackie <wsmackie@juniper.net> | 2017-08-22 09:36:02 -0700 |
---|---|---|
committer | Stuart Mackie <wsmackie@juniper.net> | 2017-08-22 09:36:02 -0700 |
commit | f7bc94f431257dcdd31d7799e035dd4b62e5704a (patch) | |
tree | d9f59b0bccb8b3c0735171668945ac992fba18f5 | |
parent | c7410f20ae678809c9cf91af284f8c07deb4ead9 (diff) |
Changed $ROLES to explicit list to avoid some bash issue
Change-Id: I512f1717705bf208bb847612abd41c82c13af644
Signed-off-by: Stuart Mackie <wsmackie@juniper.net>
-rwxr-xr-x | ci/02-deploybundle.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ci/02-deploybundle.sh b/ci/02-deploybundle.sh index b88bb2b0..396f5ea9 100755 --- a/ci/02-deploybundle.sh +++ b/ci/02-deploybundle.sh @@ -169,10 +169,9 @@ openfile_fix() { if [ "$opnfvsdn" = "ocl" ] then - ROLES="contrail-controller contrail-analytics contrail-analyticsdb" TAG="ubuntu16.04-4.0.0.0-20.tar.gz" - for ROLE in $ROLES + for ROLE in contrail-controller contrail-analytics contrail-analyticsdb do FILE="${ROLE}-${TAG}" if [ ! -f $FILE ] |