summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-18 07:29:44 -0600
committerJeff Carr <[email protected]>2025-01-18 07:29:44 -0600
commitd51f5b385ab89fd9b898d8feec470289b5db6802 (patch)
treea1f2e74dc83aabd70f62d7fea47007aa89b38d22 /Makefile
parent1e5fac4cd85f0270d9997792fa85c11c35c0d2f2 (diff)
attempt to fix when not using forgev0.22.57
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 47893e9..cd409a1 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ VERSION = $(shell git describe --tags)
DATE = $(shell date +%Y.%m.%d)
run: build
- ./go-deb --repo go.wit.com/apps/autotypist
+ ./go-deb --forge go.wit.com/apps/autotypist
vet:
@GO111MODULE=off go vet
@@ -13,10 +13,9 @@ vet:
auto-build: build
./go-deb --auto --repo go.wit.com/apps/autotypist
-build:
+build: goimports
-rm resources/*.so
touch resources/blank.so
- -cp -a ~/go/src/go.wit.com/toolkits/*/*.so resources/ # embed the toolkit plugins
GO111MODULE="off" go build -v \
-ldflags "-X main.VERSION=${VERSION} -X main.DATE=${DATE} -X gui.GUIVERSION=${VERSION}"