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
gopatch requires exactly one entity after the package name (if any) and imports. Patches that affect only imports are not supported.
This fails:
@@ @@ -import "example.com/foo-go" +import "example.com/foo"
We can work around this by "using" foo in the patch without changing it.
@@ @@ -import "example.com/foo-go" +import "example.com/foo" foo
We should not have this requirement, and instead support patches that don't affect code beyond the imports and packages.
This is likely related to #4 where we plan to add support for multiple entities in a single diff.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gopatch requires exactly one entity after the package name (if any) and imports.
Patches that affect only imports are not supported.
This fails:
We can work around this by "using" foo in the patch without changing it.
We should not have this requirement, and instead support patches that don't affect code beyond the imports and packages.
This is likely related to #4 where we plan to add support for multiple entities in a single diff.
The text was updated successfully, but these errors were encountered: