Skip to content

Commit

Permalink
Justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
offbyone committed Dec 7, 2024
1 parent 074864a commit 8a2e6f8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
build: build-arm64 build-amd64

build-arm64:
GOOS=linux GOARCH=arm64 go build -o bin/tailscale-s3-proxy-arm64 tailscale-s3-proxy

build-amd64:
GOOS=linux GOARCH=amd64 go build -o bin/tailscale-s3-proxy-amd64 tailscale-s3-proxy

deps:
go get -u ./... && go mod tidy && go mod vendor

0 comments on commit 8a2e6f8

Please sign in to comment.