This repository was archived by the owner on Sep 2, 2024. It is now read-only.
File tree 8 files changed +756
-985
lines changed
8 files changed +756
-985
lines changed Original file line number Diff line number Diff line change 7
7
pkg : build
8
8
@rm -rf dist/*
9
9
@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
12
11
@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
14
13
@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 :
17
17
@echo " compressing binaries"
18
18
@gzip dist/*
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
const (
13
13
// Version is the current version of the CLI
14
- Version = "v1.0 .0"
14
+ Version = "v1.4 .0"
15
15
)
16
16
17
17
var (
You can’t perform that action at this time.
0 commit comments