summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-10-11 11:51:02 -0500
committerJeff Carr <[email protected]>2022-10-11 11:51:02 -0500
commit61f7599e0ee9f43ac785bf3fef9bf09e0915cf0a (patch)
tree5bbe682d71e10e51b721821a73795e1b09e9aca6
parent8358ca44efa625be9cd69fab870dfcf9c2a05df5 (diff)
build without go.mod file
-rw-r--r--cmds/gui-example/Makefile3
1 files changed, 2 insertions, 1 deletions
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