test262: remove incorrect shift

It remained accidentally when the script changed from custom
arguments parsing to using getopts.
This commit is contained in:
Avi Halachmi (:avih)
2021-04-19 21:38:36 +03:00
committed by Tor Andersson
parent 857ffd39b0
commit d5f6b3b66e

View File

@@ -55,7 +55,7 @@ while getopts bBfhl:ps o; do
p) PRINT_ALL=yes ;;
s) EXTRA_ARGS="$EXTRA_ARGS -s" ;;
f) EXTRA_ARGS="$EXTRA_ARGS -f" ;;
l) EXTRA_ARGS="$EXTRA_ARGS -l $OPTARG"; shift ;;
l) EXTRA_ARGS="$EXTRA_ARGS -l $OPTARG" ;;
m) mujs=$OPTARG;;
*) usage "unknown option -$o" ;;
esac