diff --git a/scripts/examples/mbed_example.sh b/scripts/examples/mbed_example.sh index a70334edbad04b..85b438109a89bf 100755 --- a/scripts/examples/mbed_example.sh +++ b/scripts/examples/mbed_example.sh @@ -38,33 +38,33 @@ TARGET_MEMORY_ALIGN[CY8CPROTO_062_4343W]=8 for i in "$@"; do case $i in - -a=* | --app=*) - APP="${i#*=}" - shift - ;; - -b=* | --board=*) - TARGET_BOARD="${i#*=}" - shift - ;; - -t=* | --toolchain=*) - TOOLCHAIN="${i#*=}" - shift - ;; - -p=* | --profile=*) - PROFILE="${i#*=}" - shift - ;; - -c=* | --command=*) - COMMAND="${i#*=}" - shift - ;; - -T=* | --type=*) - TYPE="${i#*=}" - shift - ;; - *) - # unknown option - ;; + -a=* | --app=*) + APP="${i#*=}" + shift + ;; + -b=* | --board=*) + TARGET_BOARD="${i#*=}" + shift + ;; + -t=* | --toolchain=*) + TOOLCHAIN="${i#*=}" + shift + ;; + -p=* | --profile=*) + PROFILE="${i#*=}" + shift + ;; + -c=* | --command=*) + COMMAND="${i#*=}" + shift + ;; + -T=* | --type=*) + TYPE="${i#*=}" + shift + ;; + *) + # unknown option + ;; esac done