2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-26 13:30:30 +00:00

chore: fix a test on macos

This commit is contained in:
Alex Eagle 2024-01-05 18:09:43 -08:00
parent 1be6994ca6
commit 87ff85a769

View file

@ -5,7 +5,7 @@ mkdir -p $(dirname $1)
outfile=$1 outfile=$1
rm -f $outfile rm -f $outfile
for each in $@; do for each in $@; do
sanitized=${each/darwin/PLATFORM} sanitized=${each/darwin_arm64/PLATFORM}
sanitized=${sanitized/k8/PLATFORM} sanitized=${sanitized/k8/PLATFORM}
echo $sanitized >>$outfile echo $sanitized >>$outfile
done done