Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1b3b4 commit 75c75eaCopy full SHA for 75c75ea
1 file changed
csharp/scripts/create-extractor-pack.sh
@@ -6,7 +6,11 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
6
dotnet_platform="linux-x64"
7
elif [[ "$OSTYPE" == "darwin"* ]]; then
8
platform="osx64"
9
- dotnet_platform="osx-x64"
+ if [[ $(uname -m) == 'arm64' ]]; then
10
+ dotnet_platform="osx-arm64"
11
+ else
12
+ dotnet_platform="osx-x64"
13
+ fi
14
else
15
echo "Unknown OS"
16
exit 1
0 commit comments