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
The du folder has its own go.mod file and is therefore a separate module, which means that it cannot be updated based on existing tags.
Therefoure, go get -u github.com/ricochet2200/go-disk-usage/du@v1.1.2 results in the following error:
go get -u github.com/ricochet2200/go-disk-usage/du@v1.1.2
go get: module github.com/ricochet2200/go-disk-usage@v1.1.2 found, but does not contain package github.com/ricochet2200/go-disk-usage/du
As per the docs, when there are multiple modules in one repository, the tags need to indicate which module is being versioned.
In other words, you would need to add a tag called du/v1.1.2 to allow downstream packages to use the latest du module.
du/v1.1.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The du folder has its own go.mod file and is therefore a separate module, which means that it cannot be updated based on existing tags.
Therefoure,
go get -u github.com/ricochet2200/go-disk-usage/du@v1.1.2
results in the following error:As per the docs, when there are multiple modules in one repository, the tags need to indicate which module is being versioned.
In other words, you would need to add a tag called
du/v1.1.2
to allow downstream packages to use the latest du module.The text was updated successfully, but these errors were encountered: