From 9cd155f7ea92a0ff6fe06fb26008b6b51d97f778 Mon Sep 17 00:00:00 2001 From: Manuel <2084639+tennox@users.noreply.github.com> Date: Tue, 18 Oct 2022 15:39:35 +0100 Subject: [PATCH] Update broken fisher command ``` fisher: unknown flag or command "update" usage: fisher add Add packages fisher rm Remove packages fisher Update all packages fisher ls [] List installed packages matching fisher --help Show this help fisher --version Show the current version fisher self-update Update to the latest version fisher self-uninstall Uninstall from your system ``` --- src/steps/os/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/unix.rs b/src/steps/os/unix.rs index cdbc9ad3..d370f0f5 100644 --- a/src/steps/os/unix.rs +++ b/src/steps/os/unix.rs @@ -88,7 +88,7 @@ pub fn run_fisher(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> { print_separator("Fisher"); - run_type.execute(&fish).args(&["-c", "fisher update"]).check_run() + run_type.execute(&fish).args(&["-c", "fisher"]).check_run() } pub fn run_bashit(ctx: &ExecutionContext) -> Result<()> {