From 6186eadb704ded894b474dba1ba2aab778a327ad Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 16 Apr 2019 08:37:56 +0300 Subject: [PATCH] Fix fisher seperator --- src/steps/os/unix.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/steps/os/unix.rs b/src/steps/os/unix.rs index 6828edb0..671218ee 100644 --- a/src/steps/os/unix.rs +++ b/src/steps/os/unix.rs @@ -32,12 +32,13 @@ pub fn run_fisher(base_dirs: &BaseDirs, run_type: RunType) -> Result<(), Error> .home_dir() .join(".config/fish/functions/fisher.fish") .require()?; + + print_separator("Fisher"); run_type .execute(&fish) .args(&["-c", "fisher self-update"]) .check_run()?; - print_separator("Fisher"); run_type.execute(&fish).args(&["-c", "fisher"]).check_run() }