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
Right now rustup will attempt to e.g. run rustdoc blindly in a given toolchain, even if rustdoc doesn't exist (which is possible in e.g. custom toolchains). When this happens rustup will accidentally execute itself infinitely. It could instead check whether the tool actually exists before running it.
The text was updated successfully, but these errors were encountered:
@brson@Manishearth has #917 open to fix this, but the regression test is broken on CI due to there being a global rust installation in the CI environment - might need to hack PATH for the tests - what do you think?
Right now rustup will attempt to e.g. run
rustdoc
blindly in a given toolchain, even if rustdoc doesn't exist (which is possible in e.g. custom toolchains). When this happens rustup will accidentally execute itself infinitely. It could instead check whether the tool actually exists before running it.The text was updated successfully, but these errors were encountered: