From a33537c799c0ac2dad847fbffaeebabbff4f786f Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 18 Jan 2024 04:12:27 -0600 Subject: [PATCH] paths Signed-off-by: Jeff Carr --- Makefile | 7 +++++++ debian/Makefile | 2 +- go.mod | 3 +++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 go.mod diff --git a/Makefile b/Makefile index 687f719..a32f525 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,13 @@ all: build debian build: nocui gocui andlabs +download: + go get -v go.wit.com/toolkits/debian + go get -v go.wit.com/toolkits/tree + go get -v go.wit.com/toolkits/nogui + go get -v go.wit.com/toolkits/gogui + go get -v go.wit.com/toolkits/andlabs + notes: ifeq ($(GO111MODULE),) @echo diff --git a/debian/Makefile b/debian/Makefile index 586d28b..9b9ff88 100644 --- a/debian/Makefile +++ b/debian/Makefile @@ -1,5 +1,5 @@ # GITVERSION=$(shell git rev-parse FETCH_HEAD) -GUIVERSION=$(shell cd ../../../lib/widget && git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//') +GUIVERSION=$(shell cd ../../../widget && git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//') TOOLKITVERSION=$(shell git describe --tags $(git rev-list --tags --max-count=1) | sed 's/^v//') VERSION=${TOOLKITVERSION}-gui-${GUIVERSION} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..705663a --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module go.wit.com/toolkits/debian + +go 1.21.4