aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-28 17:53:51 -0300
committerEuAndreh <eu@euandre.org>2022-10-28 17:53:53 -0300
commit25e766c6f761df2606672381c618c330f73a1677 (patch)
tree8416bc4183a4be840410ceac86844ddd4ca00c3b
parentRevert "etc/guix/home.scm: Add "vdirsyncer" package" (diff)
downloaddotfiles-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.
-rwxr-xr-xbin/update4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/update b/bin/update
index 0d095c1..11ac73d 100755
--- a/bin/update
+++ b/bin/update
@@ -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