Update broken fisher command

```
fisher: unknown flag or command "update"
usage: fisher add <package...>     Add packages
       fisher rm  <package...>     Remove packages
       fisher                      Update all packages
       fisher ls  [<regex>]        List installed packages matching <regex>
       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
```
This commit is contained in:
Manuel
2022-10-18 15:39:35 +01:00
committed by GitHub
parent 4192db14f6
commit 9cd155f7ea

View File

@@ -88,7 +88,7 @@ pub fn run_fisher(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {
print_separator("Fisher"); 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<()> { pub fn run_bashit(ctx: &ExecutionContext) -> Result<()> {