diff options
| -rw-r--r-- | dotfiles/fish/conf.d/update.fish | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish index b03f919..e21fb03 100644 --- a/dotfiles/fish/conf.d/update.fish +++ b/dotfiles/fish/conf.d/update.fish @@ -17,7 +17,13 @@ function update::tools go install golang.org/x/tools/cmd/goimports@latest & set -a pids $last_pid - for prog in hexai tasksamurai timr + for hexai in hexai hexai-lsp hexai-action + echo "Installing/updating $prog from codeberg.org/snonux/hexai/cmd/$prog@latest" + go install codeberg.org/snonux/hexai/cmd/$prog@latest & + set -a pids $last_pid + end + + for prog in tasksamurai timr echo "Installing/updating $prog from codeberg.org/snonux/$prog/cmd/$prog@latest" go install codeberg.org/snonux/$prog/cmd/$prog@latest & set -a pids $last_pid |
