From 66e48bd1681fab6ce99a8e3d9230efebaa24d67f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 7 Jan 2020 11:49:09 -0800 Subject: [PATCH] Remove now no-longer-necessary pause in publish script --- publish.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/publish.rs b/publish.rs index 6b69a4c5..2f33aa78 100644 --- a/publish.rs +++ b/publish.rs @@ -207,14 +207,6 @@ fn publish(krate: &Crate) { if !CRATES_TO_PUBLISH.iter().any(|s| *s == krate.name) { return; } - if krate.name == "wasm-bindgen" { - println!("ABOUT TO PUBLISH wasm-bindgen"); - println!("for this to work you need to comment out the `dev-dependencies`"); - println!("section in `Cargo.toml` and everything below"); - println!(""); - println!("hit enter when done"); - drop(io::stdin().read_line(&mut String::new())); - } let status = Command::new("cargo") .arg("publish") .current_dir(krate.manifest.parent().unwrap()) @@ -225,11 +217,4 @@ fn publish(krate: &Crate) { if !status.success() { println!("FAIL: failed to publish `{}`: {}", krate.name, status); } - - if krate.name == "wasm-bindgen" { - println!("ok please now uncomment the section you just commented"); - println!(""); - println!("hit enter when done"); - drop(io::stdin().read_line(&mut String::new())); - } }