You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rules_jvm updates the srcs attribute with the OS-specific path separator, which leads to unnecessary updates and the parent path being incorrectly trimmed, e.g. for the following project structure
This pull request updates the srcs attribute with "/" regardless of the
OS not to update the BUILD file when Gazelle is run on a different OS
and to correctly trim the parent path (#269).
rules_jvm updates the srcs attribute with the OS-specific path separator, which leads to unnecessary updates and the parent path being incorrectly trimmed, e.g. for the following project structure
and the nested BUILD.bazel file having:
once "bazel run gazelle" is executed on Windows, it will update the file to:
I think it should always use "/" because java_library and other rules that consume this attribute support "/" regardless of the OS they run on.
The text was updated successfully, but these errors were encountered: