Merge pull request #57 from s-ludwig/fix_test_script_error

Fix unbound variable error in test script.
This commit is contained in:
Sönke Ludwig 2020-05-12 14:30:21 +02:00 committed by GitHub
commit cdee545d82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ if [ ! -z "${COVERAGE:-}" ]; then
else
dub test
if [ "x$TEST_MESON" = "xtrue" ] && [ "x$(dmd --version | head -n1)" != "xDMD64 D Compiler v2.085.1" ]; then
if [ "x${TEST_MESON:-}" = "xtrue" ] && [ "x$(dmd --version | head -n1)" != "xDMD64 D Compiler v2.085.1" ]; then
meson build && ninja -C build
fi
fi