-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
GOOS=darwin GOARCH=amd64 go build -o bin/jprq-darwin-amd64 cli/*.go | ||
GOOS=darwin GOARCH=arm64 go build -o bin/jprq-darwin-arm64 cli/*.go | ||
GOOS=linux GOARCH=386 go build -o bin/jprq-linux-386 cli/*.go | ||
GOOS=linux GOARCH=amd64 go build -o bin/jprq-linux-amd64 cli/*.go | ||
GOOS=linux GOARCH=arm go build -o bin/jprq-linux-arm cli/*.go | ||
GOOS=linux GOARCH=arm64 go build -o bin/jprq-linux-arm64 cli/*.go | ||
GOOS=windows GOARCH=386 go build -o bin/jprq-windows-386.exe cli/*.go | ||
GOOS=windows GOARCH=amd64 go build -o bin/jprq-windows-amd64.exe cli/*.go | ||
GOOS=darwin GOARCH=amd64 go build -ldflags '-s' -o bin/jprq-darwin-amd64 cli/*.go | ||
GOOS=darwin GOARCH=arm64 go build -ldflags '-s' -o bin/jprq-darwin-arm64 cli/*.go | ||
GOOS=linux GOARCH=386 go build -ldflags '-s' -o bin/jprq-linux-386 cli/*.go | ||
GOOS=linux GOARCH=amd64 go build -ldflags '-s' -o bin/jprq-linux-amd64 cli/*.go | ||
GOOS=linux GOARCH=arm go build -ldflags '-s' -o bin/jprq-linux-arm cli/*.go | ||
GOOS=linux GOARCH=arm64 go build -ldflags '-s' -o bin/jprq-linux-arm64 cli/*.go | ||
GOOS=windows GOARCH=386 go build -ldflags '-s' -o bin/jprq-windows-386.exe cli/*.go | ||
GOOS=windows GOARCH=amd64 go build -ldflags '-s' -o bin/jprq-windows-amd64.exe cli/*.go |