Skip to content

Commit

Permalink
chore: fix goarch values
Browse files Browse the repository at this point in the history
  • Loading branch information
tyhopp committed Sep 21, 2024
1 parent c10fd2f commit f0e5152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ build: deps
GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o lenv-darwin-amd64 ./cmd/lenv/main.go
GOOS=darwin GOARCH=arm64 go build -ldflags="-s -w" -trimpath -o lenv-darwin-arm64 ./cmd/lenv/main.go
GOOS=freebsd GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o lenv-freebsd-amd64 ./cmd/lenv/main.go
GOOS=freebsd GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o lenv-freebsd-arm64 ./cmd/lenv/main.go
GOOS=freebsd GOARCH=arm64 go build -ldflags="-s -w" -trimpath -o lenv-freebsd-arm64 ./cmd/lenv/main.go
GOOS=openbsd GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o lenv-openbsd-amd64 ./cmd/lenv/main.go
GOOS=openbsd GOARCH=amd64 go build -ldflags="-s -w" -trimpath -o lenv-openbsd-arm64 ./cmd/lenv/main.go
GOOS=openbsd GOARCH=arm64 go build -ldflags="-s -w" -trimpath -o lenv-openbsd-arm64 ./cmd/lenv/main.go

0 comments on commit f0e5152

Please sign in to comment.