aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-21 15:19:31 -0300
committerEuAndreh <eu@euandre.org>2022-10-21 15:19:31 -0300
commitb3372e864a8c8ec5393d731919da0fc94e63d1da (patch)
tree07edb1453a2feea82036c5975471e44891974697 /bin
parentbin/menu: Settle with passwords in clipboard daemon for now (diff)
downloaddotfiles-b3372e864a8c8ec5393d731919da0fc94e63d1da.tar.gz
dotfiles-b3372e864a8c8ec5393d731919da0fc94e63d1da.tar.xz
bin/update: Add more explicit warning when vcs fetch fails
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update b/bin/update
index 9eda076..2c7bba8 100755
--- a/bin/update
+++ b/bin/update
@@ -81,5 +81,5 @@ repos -e ~/dev/go/ -e ~/dev/quicklisp/ -e ~/dev/archive/ ~/dev/ |
TYPE="$(echo "$line" | cut -d: -f1)"
DIR="$( echo "$line" | cut -d: -f2-)"
cd "$DIR"
- vcs "$TYPE" fetch || printf 'Failed to fetch repository: %s.\n' "$DIR" >&2
+ vcs "$TYPE" fetch || printf 'WARNING: Failed to fetch repository: %s.\n' "$DIR" >&2
done