1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

Update update.sh to support both "macos-13" and "macos-latest" flags

This commit is contained in:
alessandromrc 2024-12-21 01:57:19 +01:00 committed by GitHub
parent 209059527f
commit f4d3d9f0e6
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ folder="build";
if [ "$platform" = "ubuntu-latest" ]; then
arch="linux-$arch";
folder="$arch";
elif [ "$platform" = "macos-13" ]; then
elif [ "$platform" = "macos-13" ] || [ "$platform" = "macos-latest" ]; then
arch="darwin-$arch";
folder="$arch";
elif [ "$platform" = "windows-latest" ]; then