aboutsummaryrefslogtreecommitdiff
path: root/watch-git-tags
diff options
context:
space:
mode:
Diffstat (limited to 'watch-git-tags')
-rwxr-xr-xwatch-git-tags5
1 files changed, 3 insertions, 2 deletions
diff --git a/watch-git-tags b/watch-git-tags
index 3d3b7c6..79e26d8 100755
--- a/watch-git-tags
+++ b/watch-git-tags
@@ -9,8 +9,9 @@ lt() {
# List sorted remote tags
rt() {
- git ls-remote -qt |
- awk '!/\^\{\}$/{print substr($2,11)}' |
+ { git ls-remote -qt ||
+ printf >&2 'Failed to retrieve tags for repository %s\n' "$PWD"
+ } | awk '!/\^\{\}$/{print substr($2,11)}' |
LC_COLLATE=C sort
}