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>
# 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;;