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
Currently, the rules rely on passing workspace files to the child workspace using runfiles. However, a known Bazel issue prevents files with spaces in their names from working properly. Ideally, this will be fixed in Bazel. However, for now, we may want to allow a client to specify whether to use an alternative mechanism.
Possible solutions:
Add the files to an archive file and pass that through runfiles
Create a mechanism that creates symlinks from a more robust file format as compared to the current, space-delimited format.
The text was updated successfully, but these errors were encountered:
Currently, the rules rely on passing workspace files to the child workspace using
runfiles
. However, a known Bazel issue prevents files with spaces in their names from working properly. Ideally, this will be fixed in Bazel. However, for now, we may want to allow a client to specify whether to use an alternative mechanism.Possible solutions:
The text was updated successfully, but these errors were encountered: