forked from M-Labs/artiq-zynq
run: exit with error on unrecognized argument
This commit is contained in:
parent
9edd6f374d
commit
a56abe8830
|
@ -6,7 +6,7 @@ impure=0
|
|||
|
||||
while getopts "h:i" opt; do
|
||||
case "$opt" in
|
||||
\?) exit 0
|
||||
\?) exit 1
|
||||
;;
|
||||
i) impure=1
|
||||
;;
|
||||
|
|
|
@ -9,7 +9,7 @@ impure_dir="build"
|
|||
|
||||
while getopts "h:id:" opt; do
|
||||
case "$opt" in
|
||||
\?) exit 0
|
||||
\?) exit 1
|
||||
;;
|
||||
h) target_host=$OPTARG
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue