Skip to content

Commit 66e48bd

Browse files
committed
Remove now no-longer-necessary pause in publish script
1 parent 2902ceb commit 66e48bd

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

publish.rs

-15
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,6 @@ fn publish(krate: &Crate) {
207207
if !CRATES_TO_PUBLISH.iter().any(|s| *s == krate.name) {
208208
return;
209209
}
210-
if krate.name == "wasm-bindgen" {
211-
println!("ABOUT TO PUBLISH wasm-bindgen");
212-
println!("for this to work you need to comment out the `dev-dependencies`");
213-
println!("section in `Cargo.toml` and everything below");
214-
println!("");
215-
println!("hit enter when done");
216-
drop(io::stdin().read_line(&mut String::new()));
217-
}
218210
let status = Command::new("cargo")
219211
.arg("publish")
220212
.current_dir(krate.manifest.parent().unwrap())
@@ -225,11 +217,4 @@ fn publish(krate: &Crate) {
225217
if !status.success() {
226218
println!("FAIL: failed to publish `{}`: {}", krate.name, status);
227219
}
228-
229-
if krate.name == "wasm-bindgen" {
230-
println!("ok please now uncomment the section you just commented");
231-
println!("");
232-
println!("hit enter when done");
233-
drop(io::stdin().read_line(&mut String::new()));
234-
}
235220
}

0 commit comments

Comments
 (0)