You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When file a bug report (see below for feature requests)
Please answer these quesions for a bug report. Thanks!
What version of GoTTY are you using (gotty --version)?
What operating system and browser are you using?
What did you do?
If possible, please provide the command you ran.
What did you expect to see?
What did you see instead?
If possible, please provide the output of the command and your browser's console output.
root@ubuntu:~/go/src/gotty# go get -u github.com/codegangsta/cli
go: downloading github.com/codegangsta/cli v1.22.5
go get: github.com/codegangsta/[email protected] updating to
github.com/codegangsta/[email protected]: parsing go.mod:
module declares its path as: github.com/urfave/cli
but was required as: github.com/codegangsta/cli
I updated the go.mod file and tried to build but received:
root@ubuntu:~/go/src/gotty# go build main.go
go: inconsistent vendoring in /home/jiren/go/src/gotty:
github.com/urfave/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
github.com/codegangsta/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
To ignore the vendor directory, use -mod=readonly or -mod=mod.
To sync the vendor directory, run:
go mod vendor
When file a new feature proposal
Please provide an actual usecase that requires your new feature.
The text was updated successfully, but these errors were encountered:
Need to update the files from
codegangsta/cli
tourfave/cli
.Need to update the go.mod file:
Also update imports on
go.mod
,utils\flags.go
I also ran:
I updated the Godeps.json file:
It fixed the issue
When file a bug report (see below for feature requests)
Please answer these quesions for a bug report. Thanks!
What version of GoTTY are you using (
gotty --version
)?What operating system and browser are you using?
What did you do?
If possible, please provide the command you ran.
What did you expect to see?
What did you see instead?
If possible, please provide the output of the command and your browser's console output.
I updated the
go.mod
file and tried to build but received:When file a new feature proposal
Please provide an actual usecase that requires your new feature.
The text was updated successfully, but these errors were encountered: