diff options
author | EuAndreh <eu@euandre.org> | 2022-10-28 11:16:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-28 11:16:05 -0300 |
commit | 9a791ec26ba920965502372308fed166227802f3 (patch) | |
tree | 2fca8b52a1315052656276613ec99857a5118340 | |
parent | bin/update: Replace while block with xargs (diff) | |
download | dotfiles-9a791ec26ba920965502372308fed166227802f3.tar.gz dotfiles-9a791ec26ba920965502372308fed166227802f3.tar.xz |
bin/update: Run vcs fetch in parallel (4)
-rwxr-xr-x | bin/update | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -77,4 +77,5 @@ rfc -u newsboat -x reload repos -e ~/dev/go/ -e ~/dev/quicklisp/ -e ~/dev/archive/ ~/dev/ | - xargs -I% x vcs -C% fetch OR echo 'WARNING: Failed to fetch repository: %.' >&2 + xargs -I% -P4 x \ + vcs -C% fetch OR echo 'WARNING: Failed to fetch repository: %.' >&2 |