Skip to content

Commit

Permalink
fix: πŸ› Update run path initialisation to convert from AbsolutePathBuf
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanier committed Aug 21, 2024
1 parent b2305ca commit 01a41ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::process::ExitCode;

fn main() -> Result<ExitCode, miette::ErrReport> {
// Initialise nur state
let run_path = get_init_cwd();
let run_path = get_init_cwd().into_std_path_buf();
let nur_state = NurState::new(run_path, env::args().collect())?;

// Create raw nu engine state
Expand Down

0 comments on commit 01a41ee

Please sign in to comment.