summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@mimecast.com>2018-02-04 20:56:08 +0000
committerPaul Buetow <paul@mimecast.com>2018-02-04 20:56:08 +0000
commit1e93269065a93dea617e50599735faaf4af3108d (patch)
tree88f90f75f0f6e8fed03ed8bd89b828c8cff2b011
parent5fffe7c603a6f55c05b3e2ccf55310af6dab6217 (diff)
fix github uri
-rw-r--r--Makefile2
-rw-r--r--diskstats/diskstats.go2
-rw-r--r--gotop/main.go6
-rw-r--r--process/process.go2
4 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index d1f637b..0be6985 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
install:
- go install github.com/buetow/gotop/gotop
+ go install github.com/snonux/gotop/gotop
run:
go run gotop/main.go -m=2
docu: install
diff --git a/diskstats/diskstats.go b/diskstats/diskstats.go
index 7f75f92..e11994d 100644
--- a/diskstats/diskstats.go
+++ b/diskstats/diskstats.go
@@ -2,7 +2,7 @@ package diskstats
import (
"fmt"
- "github.com/buetow/gotop/utils"
+ "github.com/snonux/gotop/utils"
)
type Diskstats struct {
diff --git a/gotop/main.go b/gotop/main.go
index 7f8e96a..98d7622 100644
--- a/gotop/main.go
+++ b/gotop/main.go
@@ -7,9 +7,9 @@ import (
"errors"
"flag"
"fmt"
- "github.com/buetow/gotop/diskstats"
- "github.com/buetow/gotop/process"
- "github.com/buetow/gotop/utils"
+ "github.com/snonux/gotop/diskstats"
+ "github.com/snonux/gotop/process"
+ "github.com/snonux/gotop/utils"
"golang.org/x/crypto/ssh/terminal"
"log"
"os"
diff --git a/process/process.go b/process/process.go
index 7c63d37..fb9aae7 100644
--- a/process/process.go
+++ b/process/process.go
@@ -2,7 +2,7 @@ package process
import (
"fmt"
- "github.com/buetow/gotop/utils"
+ "github.com/snonux/gotop/utils"
"io/ioutil"
"log"
"regexp"