diff options
author | EuAndreh <eu@euandre.org> | 2022-10-28 17:53:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-28 17:53:53 -0300 |
commit | 25e766c6f761df2606672381c618c330f73a1677 (patch) | |
tree | 8416bc4183a4be840410ceac86844ddd4ca00c3b /bin | |
parent | Revert "etc/guix/home.scm: Add "vdirsyncer" package" (diff) | |
download | dotfiles-25e766c6f761df2606672381c618c330f73a1677.tar.gz dotfiles-25e766c6f761df2606672381c618c330f73a1677.tar.xz |
bin/update: Log individual repositories being fetched
To make it easier to differentiate no updates existing from being stuck.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -78,4 +78,6 @@ newsboat -x reload repos -e ~/dev/go/ -e ~/dev/quicklisp/ -e ~/dev/archive/ ~/dev/ | xargs -I% -P4 x \ - vcs -C% fetch OR echo 'WARNING: Failed to fetch repository: %.' >&2 + echo 'Fetching on %.' AND \ + vcs -C% fetch OR \ + echo 'WARNING: Failed to fetch repository: %.' >&2 |