Skip to content

Commit

Permalink
chore: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Nov 20, 2023
1 parent 73ae667 commit 9103114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub fn run(packages: Vec<String>, dev: bool, sync_lockfile: bool, global: bool)
// Filter out any flags
// This can happen when passing args using `--`
// For example: `supreme install is-even -- -W`
.filter(|p| !p.starts_with("-"))
.filter(|p| !p.starts_with('-'))
.map(|p| p.to_string())
.collect::<Vec<String>>();

Expand Down

0 comments on commit 9103114

Please # to comment.