-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from viodo/dev
feat: update to v1.1.1
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 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,21 +1,21 @@ | ||
@echo off | ||
echo Build Windows... | ||
go build -ldflags="-w -s" -o build\DbDoc-1.1.0-win\DbDoc.exe main.go | ||
go build -ldflags="-w -s" -o build\DbDoc-Windows.exe main.go | ||
echo Build Windows Successfully! | ||
|
||
echo Build Linux... | ||
set CGO_ENABLED=0 | ||
set GOOS=linux | ||
set GOARCH=amd64 | ||
go build -ldflags="-w -s" -o build\DbDoc-1.1.0-linux\DbDoc main.go | ||
go build -ldflags="-w -s" -o build\DbDoc-Mac main.go | ||
echo Build Linux Successfully! | ||
|
||
|
||
echo Build Mac... | ||
set CGO_ENABLED=0 | ||
set GOOS=darwin | ||
set GOARCH=amd64 | ||
go build -ldflags="-w -s" -o build\DbDoc-1.1.0-mac\DbDoc main.go | ||
go build -ldflags="-w -s" -o build\DbDoc-Linux main.go | ||
echo Build Mac Successfully! | ||
|
||
pause |
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