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
The //python/runtime_env_toolchains file python/private/runtime_env_toolchain_interpreter.sh is missing the executable bit, which makes Bazel unable to execute the file when it's used.
This basically makes it not work as a runnable toolchain (though it works OK for a toolchain
that just needs to get past the build phase).
To fix, it just needs chmod +x added to it.
The text was updated successfully, but these errors were encountered:
The `runtime_env_toolchain_interpreter.sh` file was missing the
executable bit, which prevented the file from actually be runnable
later.
To fix, just `chmod +x` it. I also added tests to actually run using it
and verify that
it is the toolchain used by the test.
Fixes#2085
The
//python/runtime_env_toolchains
filepython/private/runtime_env_toolchain_interpreter.sh
is missing the executable bit, which makes Bazel unable to execute the file when it's used.This basically makes it not work as a runnable toolchain (though it works OK for a toolchain
that just needs to get past the build phase).
To fix, it just needs
chmod +x
added to it.The text was updated successfully, but these errors were encountered: