mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-08 18:05:42 +08:00
Fix clippy::unnecessary_semicolon warning
```
error: unnecessary semicolon
--> tools/codegen/src/main.rs:251:10
|
251 | };
| ^ help: remove
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon
= note: `-D clippy::unnecessary-semicolon` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_semicolon)]`
```
This commit is contained in:
@@ -248,7 +248,7 @@ fn main() -> Result<()> {
|
||||
if skip_existing_manifest_versions && existing_manifest.is_some() {
|
||||
eprintln!("Skipping {semver_version} already in manifest");
|
||||
continue;
|
||||
};
|
||||
}
|
||||
|
||||
let mut download_info = BTreeMap::new();
|
||||
let mut pubkey = None;
|
||||
|
||||
Reference in New Issue
Block a user