From: Joel Rosdahl Date: Tue, 9 Dec 2025 18:14:53 +0000 (+0100) Subject: test: Fix directory check for Windows paths X-Git-Tag: v4.13~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8a8022d6dee9a224b1321e8ea117115d11fd7f9;p=thirdparty%2Fccache.git test: Fix directory check for Windows paths msys2 jobs have for some strange reason started to fail, so msys2's pwd must have started returning full pathname including ":" on Windows. --- diff --git a/test/run b/test/run index f0a33191..092b78f2 100755 --- a/test/run +++ b/test/run @@ -501,10 +501,10 @@ export LC_ALL=C trap terminate_all_children EXIT # also clean up after exceptional code flow -if pwd | grep '[^A-Za-z0-9/.,=_%+-]' >/dev/null 2>&1; then +if pwd | grep '[^A-Za-z0-9/.,=_:%+-]' >/dev/null 2>&1; then cat <