Remove unnecessary to_string for clone

This commit is contained in:
Luke Parker
2025-08-30 18:08:08 -04:00
parent 47ef24a7cc
commit 974bc82387
4 changed files with 4 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
fn main() {
let artifacts_path =
std::env::var("OUT_DIR").unwrap().to_string() + "/serai-processor-ethereum-deployer";
std::env::var("OUT_DIR").unwrap().clone() + "/serai-processor-ethereum-deployer";
build_solidity_contracts::build(&[], "contracts", &artifacts_path).unwrap();
}