Fix unbound variable error in test script.

This commit is contained in:
Sönke Ludwig 2020-05-12 14:24:26 +02:00
parent 1cc98ac281
commit 67ab369fc4
1 changed files with 1 additions and 1 deletions

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