From 774be3b9b2a28439f497b2f61c4cdbc34981dd34 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sun, 26 Aug 2018 16:53:19 +0300 Subject: [PATCH] Fix fisherman --- src/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix.rs b/src/unix.rs index 5423803d..076e1850 100644 --- a/src/unix.rs +++ b/src/unix.rs @@ -28,7 +28,7 @@ pub fn run_zplug(base_dirs: &BaseDirs, terminal: &mut Terminal) -> Option<(&'sta } pub fn run_fisherman(base_dirs: &BaseDirs, terminal: &mut Terminal) -> Option<(&'static str, bool)> { - if let Some(fish) = which("fisherman") { + if let Some(fish) = which("fish") { if base_dirs.home_dir().join(".config/fish/functions/fisher.fish").exists() { terminal.print_separator("fisherman");