From 576aa14d15f57abf7d1c28e3486f2682e45c2f62 Mon Sep 17 00:00:00 2001 From: Balthild Date: Sat, 9 Nov 2024 07:08:36 -0600 Subject: [PATCH] fix(init): do not use cygpath for elvish (#6376) --- src/init/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/mod.rs b/src/init/mod.rs index a6639546..87f24344 100644 --- a/src/init/mod.rs +++ b/src/init/mod.rs @@ -215,7 +215,7 @@ pub fn init_main(shell_name: &str) -> io::Result<()> { "fish" => print_script(FISH_INIT, &starship_path.sprint_posix()?), "powershell" => print_script(PWSH_INIT, &starship_path.sprint_pwsh()?), "ion" => print_script(ION_INIT, &starship_path.sprint()?), - "elvish" => print_script(ELVISH_INIT, &starship_path.sprint_posix()?), + "elvish" => print_script(ELVISH_INIT, &starship_path.sprint()?), "tcsh" => print_script(TCSH_INIT, &starship_path.sprint_posix()?), "xonsh" => print_script(XONSH_INIT, &starship_path.sprint_posix()?), _ => {