mirror of https://github.com/on4kjm/FLEcli.git
parent
6172f13193
commit
b9bb5e8f5e
@ -0,0 +1,4 @@
|
||||
package cmd
|
||||
|
||||
const VersionString = "v0.0.0 2020-07-11"
|
||||
|
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
go test ./...
|
||||
|
||||
mkdir -p executables/windows
|
||||
mkdir -p executables/macos
|
||||
mkdir -p executables/linux
|
||||
|
||||
#Update version
|
||||
|
||||
GOOS=windows GOARCH=386 go build -o executables/windows/FLEcli.exe
|
||||
GOOS=darwin GOARCH=amd64 go build -o executables/macos/FLEcli
|
||||
GOOS=linux GOARCH=amd64 go build -o executables/linux/FLEcli-amd64
|
||||
|
Loading…
Reference in new issue