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,4 +1,4 @@
fn main() {
let artifacts_path = std::env::var("OUT_DIR").unwrap().to_string() + "/ethereum-schnorr-contract";
let artifacts_path = std::env::var("OUT_DIR").unwrap().clone() + "/ethereum-schnorr-contract";
build_solidity_contracts::build(&[], "contracts", &artifacts_path).unwrap();
}