Skip to content

Commit

Permalink
Disable anti-sude check. #695
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Aug 28, 2016
1 parent a46766e commit 31414d1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/rustup-cli/self_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,11 @@ pub fn install(no_prompt: bool, verbose: bool,
mut opts: InstallOpts) -> Result<()> {

try!(do_pre_install_sanity_checks());
try!(do_anti_sudo_check(no_prompt));
// FIXME: #695 This function is miscompiled and crashes.
// Even when I pin the compiler to an old nightly, 2016-08-10,
// which _does not crash_ on my machine, it still seems to be
// miscompiled on the deployed builds. I am very confused.
//try!(do_anti_sudo_check(no_prompt));

if !no_prompt {
let ref msg = try!(pre_install_msg(opts.no_modify_path));
Expand Down

0 comments on commit 31414d1

Please sign in to comment.