1
Fork 0

ci/test: quote {}

This is recommended in the man page
nix
Motiejus Jakštys 2022-12-11 07:20:14 +02:00
parent 6feba23aee
commit 8bc78753e2
1 changed files with 1 additions and 1 deletions

View File

@ -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 || {