Fail build with new version github.com/ysmood/fetchup v0.4.0
Rod Version: v0.116.2 I got this error with the new version for github.com/ysmood/fetchup
go.mod github.com/ysmood/fetchup v0.4.0
I got this error
# github.com/go-rod/rod/lib/launcher
../../../../go/pkg/mod/github.com/go-rod/[email protected]/lib/launcher/browser.go:138:25: too many arguments in call to fetchup.New
have (string, []string...)
want (...string)
Please fix the format of your markdown:
9 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"]
generated by check-issue
+1
I just ran into this as well. When I upgraded components, it pulled in v0.5.2 and I got this error:
# github.com/go-rod/rod/lib/launcher
../../../../../go/pkg/mod/github.com/go-rod/[email protected]/lib/launcher/browser.go:138:25: too many arguments in call to fetchup.New
have (string, []string...)
want (...string) (exit status 1)
Had to roll back to v0.3.0 to avoid this.
+1
you can downgrade fetchup to 0.2.3:
go get github.com/ysmood/[email protected]
check if successfully
go list -m all | grep fetchup
// github.com/ysmood/fetchup v0.2.3
same problem here
In my case, github.com/ysmood/[email protected] works as expected.
Same issue #1203