Commit c31254be authored by Tomohiro Ono's avatar Tomohiro Ono Committed by Yas Naoi
Browse files

Issue #3276185 by onotm, yas: Fix the "--target" option of the AWS resources cleanup script

parent 37cf1424
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ function main() {
    -n | --name) shift; val_reg_exp="$1" ;;
    -p | --profile) shift; awscli_args+=("--profile $1") ;;
    -r | --region) shift; awscli_args+=("--region $1") ;;
    -t | --target) shift; targets=("$@") break ;;
    -t | --target) shift; targets=("$@"); break ;;
    *) usage ;;
    esac
    shift