From fe64917edc05b7910055a73eaba23de103ef06fc Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Mon, 14 Oct 2019 23:48:30 +0800 Subject: [PATCH] CLI: Fix option parsing in run_tests --- lib/cli/test/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/test/run_tests.sh b/lib/cli/test/run_tests.sh index fb60f6e43d5..a6428681952 100755 --- a/lib/cli/test/run_tests.sh +++ b/lib/cli/test/run_tests.sh @@ -17,7 +17,7 @@ story_format='csf' # parse command-line options # '-f' sets fixtures directory # '-s' sets story format to use -while getopts ":fs:" opt; do +while getopts ":f:s:" opt; do case $opt in f) fixtures_dir=$OPTARG