mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-03 14:13:26 +00:00
Dependency issue with urfave/cli.v1 #245
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tbi88 on GitHub.
I have got the following error while building the docker image.
I solved it by adding the following line at the end of the "go.mod" file.
replace gopkg.in/urfave/cli.v1 => github.com/urfave/cli v1.21.0@paolafrancesca commented on GitHub:
I switched to use directly
github.com/urfave/cliinstead of the forkedgithub.com/minio/cliand it's solved@paolafrancesca commented on GitHub:
@tbi88 I already opened a ticket on go repo that seems related to the same type of error: https://github.com/golang/go/issues/33154
I experienced that error only on tip, but now I can reproduce yours on go 1.12.7-9 at least.
it seems that some package we use was updated to add
gopkg.in/urfave/cli.v1as dependency: the last build from master was tree year ago and was green (https://travis-ci.org/dutchcoders/transfer.sh/builds/573064818)do you mind opening a ticket on go? otherwise I will do
@tbi88 commented on GitHub:
Hi
I would prefer if you could do it. I am pretty new with go yet...
cheers