summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-07 03:10:04 -0500
committerJeff Carr <[email protected]>2025-10-07 03:10:04 -0500
commit738f7bbd0961bf4ee0ad28161719a25fefb5a7ac (patch)
treed4819865d5016e93096a537abade3cbfe8394b07
parentb0c4ab59a311327af904df70d2f9bd1edccd9969 (diff)
okay. try this again. this is a bad ideav0.0.10
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cd224c4..45ad8ce 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,6 @@
VERSION = $(shell git describe --tags)
GUIVERSION = $(shell git describe --tags)
-# BUILDTIME = $(shell date +%Y.%m.%d)
BUILDTIME = $(shell date +%s)
all: install
@@ -11,7 +10,7 @@ go-build: goimports
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-verbose:
+build-verbose:
GO111MODULE=off go build -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
@@ -21,7 +20,6 @@ install: goimports
vet:
GO111MODULE=off go vet
-# this is how the mirrors.wit.com debian package is created
# make a .deb package
go-deb: