Skip to content

Commit

Permalink
Update broken fisher command
Browse files Browse the repository at this point in the history
```
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
```
  • Loading branch information
tennox authored Oct 18, 2022
1 parent 4192db1 commit 9cd155f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/os/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<()> {
Expand Down

0 comments on commit 9cd155f

Please sign in to comment.