This repository was archived by the owner on Sep 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +756
-985
lines changed Expand file tree Collapse file tree 8 files changed +756
-985
lines changed Original file line number Diff line number Diff line change 77pkg : build
88 @rm -rf dist/*
99 @echo " building linux binaries"
10- @CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o dist/binary-for-linux-64-bit
11- @CGO_ENABLED=0 GOARCH=386 GOOS=linux go build -o dist/binary-for-linux-32-bit
10+ @CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o dist/linux-amd64-backend
1211 @echo " building mac binaries"
13- @CGO_ENABLED=0 GOARCH=amd64 GOOS=darwin go build -o dist/binary-for-mac-64-bit
12+ @CGO_ENABLED=0 GOARCH=amd64 GOOS=darwin go build -o dist/darwin-amd64-backend
1413 @echo " building windows binaries"
15- @CGO_ENABLED=0 GOARCH=amd64 GOOS=windows go build -o dist/binary-for-windows-64-bit.exe
16- @CGO_ENABLED=0 GOARCH=386 GOOS=windows go build -o dist/binary-for-windows-32-bit.exe
14+ @CGO_ENABLED=0 GOARCH=amd64 GOOS=windows go build -o dist/windows-amd64-backend.exe
15+
16+ compress :
1717 @echo " compressing binaries"
1818 @gzip dist/*
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
1111
1212const (
1313 // Version is the current version of the CLI
14- Version = "v1.0 .0"
14+ Version = "v1.4 .0"
1515)
1616
1717var (
You can’t perform that action at this time.
0 commit comments