ci/deploy.sh: Fix opt parse for local_env sourcing 45/39545/2
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Thu, 17 Aug 2017 19:34:15 +0000 (21:34 +0200)
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Thu, 17 Aug 2017 19:44:16 +0000 (21:44 +0200)
Previously, we only accounted for the arguments we were interested in
(l:lab, p:pod), which failed in case other (valid) arguments were
passed first.

Accept all arguments Fuel's <ci/deploy.sh> accepts, so lab/pod are
read no matter where they are placed in the command string.

Change-Id: I9125a5e70d19b7e1ca905b2572f3c8ceda13025b
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
ci/deploy.sh

index 1c95d40..b81e5c8 100755 (executable)
@@ -18,7 +18,7 @@ make patches-import
 
 # source local environment variables
 if ! [ -z $LAB_CONFIG_URL ]; then
-    while getopts "l:p:" OPTION 2>/dev/null
+    while getopts "b:B:dfFl:L:p:s:S:T:i:he" OPTION 2>/dev/null
     do
         case $OPTION in
             l) TARGET_LAB=$OPTARG;;