-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
Use go modules #102
Comments
@aniforprez could you share a build? I have no familiarity with Go programming language stuff, and I just want the latest dev build. |
Nevermind, I was able to sort it out. Here is a build up to date with 20c3e37. |
Thanks a lot for the help @aniforprez , your instructions helped me build it again with the new features and bugfixes. Please check release v3.3.0. |
Building on Go versions 1.17 and up is not working because the project has undocumented external dependencies with no
go.mod
orgo.sum
file. All that needs to be done is rungo mod init <package name>
and then add the three or so dependencies the project needs usinggo get <dependency>
and rungo mod tidy
which should allow building the module on the new go versionThe text was updated successfully, but these errors were encountered: