Skip to content

Commit c396669

Browse files
committed
Fixed clippy issues
1 parent 7289c18 commit c396669

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ format:
44
cargo fmt --all -- --check
55

66
clippy:
7-
cargo clippy --all -- -D warnings
7+
cargo clippy --all-features --workspace -- --deny warnings
88

99
test-workspace:
1010
cargo test --workspace -- --nocapture

crates/solc-binaries/src/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn download_to_file(path: &Path, downloader: &GHDownloader) -> anyhow::Result<()
6060
std::process::Command::new("xattr")
6161
.arg("-d")
6262
.arg("com.apple.quarantine")
63-
.arg(&path)
63+
.arg(path)
6464
.stderr(std::process::Stdio::null())
6565
.stdout(std::process::Stdio::null())
6666
.stdout(std::process::Stdio::null())

0 commit comments

Comments
 (0)