summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--git.go3
-rw-r--r--unix.go1
3 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2470179..429f273 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ all:
@echo Run: make redomod
@echo
@# ./myrepos >/tmp/myrepos.stderr 2>&1
+ goimports -w *.go
redomod:
rm -f go.*
diff --git a/git.go b/git.go
index 7c4e3bb..1d6b89b 100644
--- a/git.go
+++ b/git.go
@@ -4,8 +4,9 @@ import (
"strings"
"unicode/utf8"
- "go.wit.com/log"
"io/ioutil"
+
+ "go.wit.com/log"
)
func (rs *RepoStatus) String() string {
diff --git a/unix.go b/unix.go
index b2f12a4..6d3615c 100644
--- a/unix.go
+++ b/unix.go
@@ -9,7 +9,6 @@ import (
"path/filepath"
"regexp"
"strings"
- "time"
"go.wit.com/log"
)