From 774be3b9b2a28439f497b2f61c4cdbc34981dd34 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sun, 26 Aug 2018 16:53:19 +0300 Subject: [PATCH 1/2] 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"); From 60393e9963c7ed388284b14bec42d74254ae89b3 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sun, 26 Aug 2018 16:53:34 +0300 Subject: [PATCH 2/2] Version bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2273d350..9089b31e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -320,7 +320,7 @@ dependencies = [ [[package]] name = "topgrade" -version = "0.12.0" +version = "0.12.1" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "directories 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 6662be62..fc768ccd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "topgrade" description = "Upgrade all the things" license-file = "LICENCE" repository = "https://github.com/r-darwish/topgrade" -version = "0.12.0" +version = "0.12.1" authors = ["Roey Darwish Dror "] exclude = ["doc/screenshot.gif"]