summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-12 08:27:39 -0600
committerJeff Carr <[email protected]>2024-02-12 08:27:39 -0600
commit66694c1a09ff2522e553d37eeb025b183dea551d (patch)
treeea2859c4491219c22a4e57812f4c47233f368d6c /Makefile
parent6188281ddacf8184cb0213fda4ed6cfb7d487c9d (diff)
make a simple way to enable the debuggerv0.20.7v0.20.6v0.20.5v0.20.4
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 879facc..af5ce76 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,12 @@
all:
- go build -v -x
+ GO111MODULE=off go build -v -x
./helloworld
-push:
- git add --all
- git commit -a
- git push
+gocui:
+ ./helloworld --gui gocui >/tmp/helloworld.stdout 2>&1
+
+goimports:
+ goimports -w *.go
redomod:
rm -f go.*