Skip to content

Commit

Permalink
fix(init): avoid cygpath for starship binary path (#4970)
Browse files Browse the repository at this point in the history
Update mod.rs
  • Loading branch information
Snimm committed Mar 11, 2023
1 parent c8520dc commit 0ad0465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init/mod.rs
Expand Up @@ -169,7 +169,7 @@ pub fn init_stub(shell_name: &str) -> io::Result<()> {
"ion" => print!("eval $({} init ion --print-full-init)", starship.sprint()?),
"elvish" => print!(
r#"eval ({} init elvish --print-full-init | slurp)"#,
starship.sprint_posix()?
starship.sprint()?
),
"tcsh" => print!(
r#"eval `({} init tcsh --print-full-init)`"#,
Expand Down

0 comments on commit 0ad0465

Please sign in to comment.