We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8acc8b commit 4e0fd36Copy full SHA for 4e0fd36
justfile
@@ -31,7 +31,11 @@ install:
31
set -euo pipefail
32
goreleaser build --clean --single-target --snapshot
33
if [ "{{ os() }}" = "macos" ]; then
34
- cp ./dist/protoc-gen-go_temporal_darwin_amd64_v1/protoc-gen-go_temporal /usr/local/bin/
+ if [ "{{ arch() }}" = "aarch64" ]; then
35
+ cp ./dist/protoc-gen-go_temporal_darwin_arm64/protoc-gen-go_temporal /usr/local/bin
36
+ else
37
+ cp ./dist/protoc-gen-go_temporal_darwin_amd64_v1/protoc-gen-go_temporal /usr/local/bin/
38
+ fi
39
else
40
cp ./dist/protoc-gen-go_temporal_linux_amd64_v1/protoc-gen-go_temporal /usr/local/bin/
41
fi
0 commit comments