We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb1d72 commit 5b08e8aCopy full SHA for 5b08e8a
src/deployment/types.rs
@@ -304,7 +304,7 @@ impl EmulatedContractPublishSpecification {
304
305
let path = match PathBuf::try_from(&specs.path) {
306
Ok(res) => res,
307
- Err(_) => return Err(format!("unable to turn {} into a valid path", specs.path)),
+ Err(_) => return Err(format!("unable to parse '{}' as a valid path", specs.path)),
308
};
309
310
let mut contract_path = base_path.clone();
0 commit comments