From adb7d849f68f1b574e89b2cae585728f52b4c4e0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 11 Oct 2022 11:51:02 -0500 Subject: [PATCH] build without go.mod file --- cmds/gui-example/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmds/gui-example/Makefile b/cmds/gui-example/Makefile index 8718fd1..638cffc 100644 --- a/cmds/gui-example/Makefile +++ b/cmds/gui-example/Makefile @@ -2,4 +2,5 @@ run: build ./gui-example build: - go build + GO111MODULE="off" go -v get . + GO111MODULE="off" go build