Skip to content

Commit

Permalink
Fix go get not working with mod replace directive
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaloserrano committed Jan 21, 2020
1 parent 0014e95 commit ed785fb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ go 1.13
require (
github.com/buger/goterm v0.0.0-20181115115552-c206103e1f37
github.com/fatih/color v1.9.0
github.com/guptarohit/asciigraph v0.4.2-0.20191006150553-f9506970428c
github.com/jackpal/gateway v1.0.5
github.com/jesseduffield/asciigraph v0.4.2-0.20190605104717-6d88e39309ee
github.com/sparrc/go-ping v0.0.0-20190613174326-4e5b6552494c
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
)

replace github.com/guptarohit/asciigraph => github.com/jesseduffield/asciigraph v0.4.2-0.20190605104717-6d88e39309ee
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ github.com/sparrc/go-ping v0.0.0-20190613174326-4e5b6552494c/go.mod h1:eMyUVp6f/
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa h1:F+8P+gmewFQYRk6JoLQLwjBCTu3mcIURZfNkVweuRKA=
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193GlqGZbnPFnPV/5Rsb4=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

"github.com/buger/goterm"
"github.com/fatih/color"
"github.com/guptarohit/asciigraph"
"github.com/jackpal/gateway"
"github.com/jesseduffield/asciigraph"
"github.com/sparrc/go-ping"
)

Expand Down

0 comments on commit ed785fb

Please sign in to comment.