summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--argv.go2
-rw-r--r--main.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6f419a0..58cb1cb 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ all: build
./basicwindow
build:
- GO111MODULE=off go build \
+ GO111MODULE=off go build -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
verbose:
diff --git a/argv.go b/argv.go
index 44b5b55..75feb6d 100644
--- a/argv.go
+++ b/argv.go
@@ -3,7 +3,7 @@ package main
import (
"os"
- "github.com/alexflint/go-arg"
+ "go.wit.com/dev/alexflint/arg"
)
/*
diff --git a/main.go b/main.go
index df51bdf..492d3db 100644
--- a/main.go
+++ b/main.go
@@ -26,7 +26,7 @@ var colors *gui.Node
func main() {
myGui = gui.New().Default()
- // myGui.LoadToolkit("nocui")
+ myGui.LoadToolkit("gocui")
helloworld()
basicWindow = makebasicWindow()