diff options
| author | Paul Buetow <paul@mimecast.com> | 2018-02-04 20:56:08 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@mimecast.com> | 2018-02-04 20:56:08 +0000 |
| commit | 1e93269065a93dea617e50599735faaf4af3108d (patch) | |
| tree | 88f90f75f0f6e8fed03ed8bd89b828c8cff2b011 | |
| parent | 5fffe7c603a6f55c05b3e2ccf55310af6dab6217 (diff) | |
fix github uri
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | diskstats/diskstats.go | 2 | ||||
| -rw-r--r-- | gotop/main.go | 6 | ||||
| -rw-r--r-- | process/process.go | 2 |
4 files changed, 6 insertions, 6 deletions
@@ -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" |
