We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
running
go mod init foo go get github.com/IGLOU-EU/go-wildcard echo 'package main import ( "fmt" wildcard "github.com/IGLOU-EU/go-wildcard" ) func main() { str := "daaadabadmanda" pattern := "da*da*da*" result := wildcard.MatchSimple(pattern, str) fmt.Println(str, pattern, result) pattern = "?a*da*d?*" result = wildcard.Match(pattern, str) fmt.Println(str, pattern, result) } ' > main.go go mod tidy
results in both github.com/IGLOU-EU/go-wildcard v1.0.2 and git.iglou.eu/Imported/go-wildcard v1.0.1 being added to go.mod and go.sum.
github.com/IGLOU-EU/go-wildcard v1.0.2
git.iglou.eu/Imported/go-wildcard v1.0.1
go.mod
go.sum
My guess, after looking into the commits and some other things:
At that point, Go mod proxy had already cached the broken version, so when you go get you get that one instead of the intended one.
go get
My suggestion would be to release a v1.0.3 to fix that.
cc/ @muesli
Cheers!
The text was updated successfully, but these errors were encountered:
I will do it as soon as possible! Thank you very much for this issue @caarlos0 !
Sorry, something went wrong.
Check ! Thank again :)
No branches or pull requests
running
results in both
github.com/IGLOU-EU/go-wildcard v1.0.2
andgit.iglou.eu/Imported/go-wildcard v1.0.1
being added togo.mod
andgo.sum
.My guess, after looking into the commits and some other things:
go.mod
in d62667cAt that point, Go mod proxy had already cached the broken version, so when you
go get
you get that one instead of the intended one.My suggestion would be to release a v1.0.3 to fix that.
cc/ @muesli
Cheers!
The text was updated successfully, but these errors were encountered: