no more OUT_DIR (#5139)
* no more OUT_DIR * no more OUT_DIR * more information about failure
This commit is contained in:
@@ -78,7 +78,7 @@ impl Accounts {
|
||||
fn make_new_dir() -> String {
|
||||
static ACCOUNT_DIR: AtomicUsize = AtomicUsize::new(0);
|
||||
let dir = ACCOUNT_DIR.fetch_add(1, Ordering::Relaxed);
|
||||
let out_dir = env::var("OUT_DIR").unwrap_or_else(|_| "farf".to_string());
|
||||
let out_dir = env::var("FARF_DIR").unwrap_or_else(|_| "farf".to_string());
|
||||
let keypair = Keypair::new();
|
||||
format!(
|
||||
"{}/{}/{}/{}",
|
||||
|
Reference in New Issue
Block a user