From 0968136a31f8841f89eb02318bc4f9b53cb19dd5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 15 Jul 2025 22:46:50 +0300 Subject: Update --- dotfiles/fish/conf.d/update.fish | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish index 4ff06cd..f27909d 100644 --- a/dotfiles/fish/conf.d/update.fish +++ b/dotfiles/fish/conf.d/update.fish @@ -3,9 +3,15 @@ function update::tools go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest echo "Installing/updating goimports" go install golang.org/x/tools/cmd/goimports@latest + + set pids 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 + go install codeberg.org/snonux/$prog/cmd/$prog@latest & + set -a pids $last_pid + end + for pid in $pids + wait $pid end if test (uname) = Linux for prog in gos gitsyncer -- cgit v1.2.3