Skip to content

Commit 8a2e6f8

Browse files
committed
Justfile
1 parent 074864a commit 8a2e6f8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

justfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)