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
1 changed files with 1 additions and 1 deletions

View File

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