xtask: Double the sleep after macro crate release

This commit is contained in:
Jonas Platte 2021-04-17 19:20:00 +02:00
parent 3995ef0fdb
commit 1abda2067e
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -130,8 +130,8 @@ impl ReleaseTask {
if published {
// Crate was published, instead of publishing skipped (because release already
// existed).
println!("Waiting 10 seconds for the release to make it into the crates.io index…");
sleep(Duration::from_secs(10));
println!("Waiting 20 seconds for the release to make it into the crates.io index…");
sleep(Duration::from_secs(20));
}
}