diff options
author | EuAndreh <eu@euandre.org> | 2022-10-21 15:19:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-21 15:19:31 -0300 |
commit | b3372e864a8c8ec5393d731919da0fc94e63d1da (patch) | |
tree | 07edb1453a2feea82036c5975471e44891974697 | |
parent | bin/menu: Settle with passwords in clipboard daemon for now (diff) | |
download | dotfiles-b3372e864a8c8ec5393d731919da0fc94e63d1da.tar.gz dotfiles-b3372e864a8c8ec5393d731919da0fc94e63d1da.tar.xz |
bin/update: Add more explicit warning when vcs fetch fails
-rwxr-xr-x | bin/update | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |