Working on UI

This commit is contained in:
2023-01-05 11:18:08 -06:00
parent a8c1812bbf
commit f06c0b4b7c
7 changed files with 393 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
# This how we want to name the binary output
# This is what we want to name the binary output
BINARY=gime
# These are the values we want to pass for VERSION and BUILD
# git tag 1.0.1
# git commit -am "One more change after the tags"
VERSION=`git describe --tags`
VERSION="beta" # `git describe --tags`
BUILD=`date +%FT%T%z`
# Setup the -ldflags option for go build here, interpolate the variable values
@@ -14,5 +14,8 @@ LDFLAGS=-ldflags "-w -s -X cmd.Version=${VERSION} -X cmd.Build=${BUILD}"
gime:
go build ${LDFLAGS} -o build/${BINARY}
runui:
cd build && ./gime ui
clean:
rm build/*