diff options
| author | Jeff Carr <[email protected]> | 2024-01-13 13:30:13 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-13 13:30:13 -0600 |
| commit | 34f33db94a04ecb24087713a87556a9672b74aa7 (patch) | |
| tree | 859cffb2deda834cc0b9050089da7e8329777e7a /gocui | |
| parent | 69ad3b12ac3f44703ae8a6c8a771af56f902252b (diff) | |
always build with GO111MODULES until stable
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gocui')
| -rw-r--r-- | gocui/Makefile | 6 | ||||
| -rw-r--r-- | gocui/args.go | 2 | ||||
| -rwxr-xr-x | gocui/gocui | bin | 0 -> 3803590 bytes |
3 files changed, 4 insertions, 4 deletions
diff --git a/gocui/Makefile b/gocui/Makefile index 4c24c14..fffcfa7 100644 --- a/gocui/Makefile +++ b/gocui/Makefile @@ -1,12 +1,12 @@ all: plugin ldd ../gocui.so +plugin: + GO111MODULE=off go build -v -buildmode=plugin -o ../gocui.so + goget: go get -v -t -u -plugin: - go build -v -x -buildmode=plugin -o ../gocui.so - objdump: objdump -t ../gocui.so |less diff --git a/gocui/args.go b/gocui/args.go index 71dcdde..916728a 100644 --- a/gocui/args.go +++ b/gocui/args.go @@ -5,7 +5,7 @@ package main */ import ( - log "go.wit.com/log" + "go.wit.com/log" ) var outputS []string diff --git a/gocui/gocui b/gocui/gocui Binary files differnew file mode 100755 index 0000000..4130e7a --- /dev/null +++ b/gocui/gocui |
