summaryrefslogtreecommitdiffstats
path: root/crates/runner/src/paths.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2023-09-30 20:28:37 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2023-09-30 20:28:37 +0200
commitbbc7bd79393de9f284fa4f50905936dc8cb2aaa0 (patch)
tree50e3694347022ea24c65dfa373c7cead7a5bc1a1 /crates/runner/src/paths.rs
parente77305d3dc7e89474b14f86b180fc0ac51db3678 (diff)
downloadrebel-bbc7bd79393de9f284fa4f50905936dc8cb2aaa0.tar
rebel-bbc7bd79393de9f284fa4f50905936dc8cb2aaa0.zip
Fix clippy warnings
Diffstat (limited to 'crates/runner/src/paths.rs')
-rw-r--r--crates/runner/src/paths.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/runner/src/paths.rs b/crates/runner/src/paths.rs
index 7af1e3a..4b3a126 100644
--- a/crates/runner/src/paths.rs
+++ b/crates/runner/src/paths.rs
@@ -102,7 +102,7 @@ pub fn depend_dir(hash: &ArchiveHash) -> String {
}
pub fn depend_lock_filename(hash: &ArchiveHash) -> String {
- join(&[DEPENDS_TMP_DIR, &format!("{}.lock", hash.to_string())])
+ join(&[DEPENDS_TMP_DIR, &format!("{}.lock", hash)])
}
pub fn archive_tmp_filename(hash: &InputHash) -> String {