From 7b0ae3c31f0912557ae189566e1490a7841fcda3 Mon Sep 17 00:00:00 2001 From: Sebastian Wick Date: Mon, 17 Feb 2025 12:45:49 +0100 Subject: [PATCH] tests/run-test.sh: Use the same quoting style everywhere --- tests/run-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-test.sh b/tests/run-test.sh index 8559aa7a2..81daa6230 100755 --- a/tests/run-test.sh +++ b/tests/run-test.sh @@ -28,7 +28,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) PYTEST=$(command -v "pytest-3" || command -v "pytest") || fail "pytest is missing" -BUILDDIR=${BUILDDIR:-$(find "${SCRIPT_DIR}/.." -maxdepth 2 -name 'build.ninja' -printf "%h\n" -quit)} +BUILDDIR=${BUILDDIR:-$(find "${SCRIPT_DIR}/.." -maxdepth 2 -name "build.ninja" -printf "%h\n" -quit)} [ ! -f "${BUILDDIR}/build.ninja" ] && fail "Path '${BUILDDIR}' does not appear to be a build dir"