fix regression with geth dir

This commit is contained in:
NikVolf 2016-08-09 18:38:44 +03:00
parent 7f5c178b1c
commit 0fb318e982

View File

@ -524,6 +524,12 @@ impl Configuration {
let dapps_path = replace_home(&self.args.flag_dapps_path); let dapps_path = replace_home(&self.args.flag_dapps_path);
let signer_path = replace_home(&self.args.flag_signer_path); let signer_path = replace_home(&self.args.flag_signer_path);
if self.args.flag_geth {
let geth_path = path::ethereum::default();
::std::fs::create_dir_all(geth_path.as_path()).unwrap_or_else(
|e| die!("Error while attempting to create '{}' for geth mode: {}", &geth_path.to_str().unwrap(), e));
}
Directories { Directories {
keys: keys_path, keys: keys_path,
db: db_path, db: db_path,