File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -207,14 +207,6 @@ fn publish(krate: &Crate) {
207
207
if !CRATES_TO_PUBLISH . iter ( ) . any ( |s| * s == krate. name ) {
208
208
return ;
209
209
}
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
- }
218
210
let status = Command :: new ( "cargo" )
219
211
. arg ( "publish" )
220
212
. current_dir ( krate. manifest . parent ( ) . unwrap ( ) )
@@ -225,11 +217,4 @@ fn publish(krate: &Crate) {
225
217
if !status. success ( ) {
226
218
println ! ( "FAIL: failed to publish `{}`: {}" , krate. name, status) ;
227
219
}
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
- }
235
220
}
You can’t perform that action at this time.
0 commit comments