Ignore file-exists error.

This commit is contained in:
Paul Hauner
2019-03-12 14:42:31 +11:00
parent cce88c9923
commit efd56ebe37
2 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ use validator_harness::ValidatorHarness;
fn main() {
let validator_file_path = keypairs_path();
fs::create_dir(validator_file_path.parent().unwrap()).unwrap();
let _ = fs::create_dir(validator_file_path.parent().unwrap());
let matches = App::new("Lighthouse Test Harness Runner")
.version("0.0.1")