We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074864a commit 8a2e6f8Copy full SHA for 8a2e6f8
justfile
@@ -0,0 +1,10 @@
1
+build: build-arm64 build-amd64
2
+
3
+build-arm64:
4
+ GOOS=linux GOARCH=arm64 go build -o bin/tailscale-s3-proxy-arm64 tailscale-s3-proxy
5
6
+build-amd64:
7
+ GOOS=linux GOARCH=amd64 go build -o bin/tailscale-s3-proxy-amd64 tailscale-s3-proxy
8
9
+deps:
10
+ go get -u ./... && go mod tidy && go mod vendor
0 commit comments