summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--args.go2
-rw-r--r--main.go2
-rw-r--r--structs.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6eff8c2..e0d7f3c 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,8 @@ all:
redomod:
rm -f go.*
- go mod init
- go mod tidy
+ GO111MODULE= go mod init
+ GO111MODULE= go mod tidy
github:
git push -u github master
diff --git a/args.go b/args.go
index 707538f..e42476e 100644
--- a/args.go
+++ b/args.go
@@ -3,7 +3,7 @@ package debugger
// initializes logging and command line options
import (
- "go.wit.com/arg"
+ "go.wit.com/dev/alexflint/arg"
"go.wit.com/log"
)
diff --git a/main.go b/main.go
index ee37292..c4d60fc 100644
--- a/main.go
+++ b/main.go
@@ -6,7 +6,7 @@ import (
"go.wit.com/log"
"go.wit.com/gui/gui"
"go.wit.com/gui/gadgets"
- "go.wit.com/gui/gadgets/logsettings"
+ "go.wit.com/gui/lib/logsettings"
)
/*
diff --git a/structs.go b/structs.go
index 8997887..83abba0 100644
--- a/structs.go
+++ b/structs.go
@@ -3,7 +3,7 @@ package debugger
import (
"go.wit.com/gui/gui"
"go.wit.com/gui/gadgets"
- "go.wit.com/gui/gadgets/logsettings"
+ "go.wit.com/gui/lib/logsettings"
)
var me *debuggerSettings