Skip to content

Commit

Permalink
update build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
HDT3213 committed Jun 10, 2023
1 parent e47c50a commit 97f03c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o target/rdb-linux-amd64 ./
go build -o target/rdb-darwin ./
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o target/rdb-darwin-amd64 ./
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o target/rdb-darwin-arm64 ./
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o target/rdb-windows-amd64.exe ./

0 comments on commit 97f03c6

Please sign in to comment.