diff options
author | Christian Poveda <christian.poveda@ferrous-systems.com> | 2022-10-03 13:02:03 -0500 |
---|---|---|
committer | Christian Poveda <christian.poveda@ferrous-systems.com> | 2022-10-03 13:02:17 -0500 |
commit | cebdedcc40f55d85d1370455c9d596a7c4ac1a19 (patch) | |
tree | 04254cf657b17ab8de1883bfcfde821bc6ebbe8c /src/lib.rs | |
parent | 15aef5e43b9ad756887e4329b87908da638bcc60 (diff) |
address clippy lints
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2647,7 +2647,7 @@ impl Bindings { .as_ref() .and_then(|f| f.to_str()) { - cmd.args(&["--config-path", path]); + cmd.args(["--config-path", path]); } let mut child = cmd.spawn()?; |