mirror of
https://github.com/eth-p/bat-extras.git
synced 2025-01-31 09:29:14 +01:00
test: Fix argument values given to test.sh not being passed to Best
This commit is contained in:
parent
7a75c55a34
commit
b0a2ca70ba
7
test.sh
7
test.sh
@ -29,7 +29,12 @@ while shiftopt; do
|
|||||||
TEST_ENV_BIN_DIR="${HERE}/bin"
|
TEST_ENV_BIN_DIR="${HERE}/bin"
|
||||||
TEST_ENV_BIN_SUFFIX=""
|
TEST_ENV_BIN_SUFFIX=""
|
||||||
;;
|
;;
|
||||||
*) OPT_ARGV+=("$OPT") ;;
|
*)
|
||||||
|
if [[ "$OPT_VAL" ]]; then
|
||||||
|
OPT_ARGV+=("${OPT}=${OPT_VAL}")
|
||||||
|
else
|
||||||
|
OPT_ARGV+=("$OPT")
|
||||||
|
fi ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user