Publish crates without --no-verify

We've had multiple bug breaking `cargo install` now, which would have
been caught by this.
This commit is contained in:
Hanno Braun 2023-02-21 12:39:38 +01:00
parent a06b19798e
commit 978bdaf8fe

View File

@ -189,10 +189,6 @@ impl Crate {
command command
.arg("publish") .arg("publish")
.args(["--token", token.unsecure()]) .args(["--token", token.unsecure()])
// By this point in the process, the crates have been built
// successfully multiple times. No reason to slow down the
// release by building them again.
.arg("--no-verify")
.current_dir(&self.path); .current_dir(&self.path);
if dry_run { if dry_run {