Skip to content
This repository was archived by the owner on Sep 2, 2024. It is now read-only.

Commit c49aa03

Browse files
committed
CLI now uses the real backend server from core package
1 parent 48cfbef commit c49aa03

File tree

8 files changed

+756
-985
lines changed

8 files changed

+756
-985
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ test:
77
pkg: 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/*

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
const (
1313
// Version is the current version of the CLI
14-
Version = "v1.0.0"
14+
Version = "v1.4.0"
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)