From 5c1489878f548d0cb330808d3d2d4288b7f53564 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 20 Feb 2025 14:36:58 -0600 Subject: [PATCH] release management code can't handle things failing to build yet --- Makefile | 14 ++++++++++++++ stdoutFakefile.go | 6 ++++++ 2 files changed, 20 insertions(+) diff --git a/Makefile b/Makefile index 3c8811c..a505075 100644 --- a/Makefile +++ b/Makefile @@ -4,3 +4,17 @@ all: clean: rm -f go.* go-mod-clean --purge + +build: goimports vet + GO111MODULE=off go build \ + -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" + +install: goimports vet + GO111MODULE=off go install \ + -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" + +vet: + GO111MODULE=off go vet + +goimports: + goimports -w *.go diff --git a/stdoutFakefile.go b/stdoutFakefile.go index 21e3d49..3c0c0e2 100644 --- a/stdoutFakefile.go +++ b/stdoutFakefile.go @@ -9,8 +9,14 @@ import ( "io" "github.com/awesome-gocui/gocui" + "go.wit.com/log" ) +func main() { + log.Info("This is here to develop go-deb support for multiple binaries") + log.Info("in a single go/git repo.") +} + type FakeFile struct { reader *bytes.Reader buffer *bytes.Buffer