Skip to content

Commit

Permalink
Fixing a build error
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohnson5 committed Aug 7, 2024
1 parent 1c6e398 commit a47803e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blast_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub const BLAST_LOG_FILE: &str = ".blast/blast.log";
async fn main() -> Result<(), Box<dyn Error>> {
let home = env::var("HOME").expect("HOME environment variable not set");
let folder_path = PathBuf::from(home).join(BLAST_LOG_FILE);
std::fs::create_dir_all(folder_path).unwrap();
std::fs::create_dir_all(folder_path.clone()).unwrap();

let _ = WriteLogger::init(
LevelFilter::Info,
Expand Down

0 comments on commit a47803e

Please sign in to comment.