Skip to content

Commit

Permalink
fix: adapt new number of assets
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoIeni committed Feb 25, 2024
1 parent 7628300 commit 5ec5f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updater/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn verify_release_plz_tag(release_plz_tag: &str) {
.output()
.unwrap();
let out = String::from_utf8(output.stdout).unwrap();
let expected_assets = "12";
let expected_assets = "11";
if out.trim() != expected_assets {
panic!("release-plz tag `{release_plz_tag}` does not have {expected_assets} assets, it has {out} instead. Probably you just need to wait until the binaries are published");
}
Expand Down

0 comments on commit 5ec5f2c

Please sign in to comment.