From 8bc78753e21aba786b206709d4669993dc5bab06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sun, 11 Dec 2022 07:20:14 +0200 Subject: [PATCH] ci/test: quote {} This is recommended in the man page --- ci/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test b/ci/test index a18f967..e3f4cf5 100755 --- a/ci/test +++ b/ci/test @@ -6,7 +6,7 @@ bazel test "$@" ... # /tmp/bazel-zig-cc should be empty for the test below to be valid. # This test ensures that github.com/ziglang/zig/issues/13050 does not # regress -find /tmp/bazel-zig-cc -name mutex_destructor.o -execdir file {} \; | \ +find /tmp/bazel-zig-cc -name mutex_destructor.o -execdir file '{}' \; | \ sort | uniq -c | sort -rn > /tmp/got_cache diff -u ci/testdata/want_cache /tmp/got_cache || {