misc: Don't display script name in output

This commit is contained in:
James Shubin
2018-01-11 18:03:04 -05:00
parent 3c677543e0
commit 70c59eab4a

2
tag.sh
View File

@@ -46,5 +46,5 @@ git push origin $t
# Be informative. # Be informative.
GIT_PAGER=cat git diff --stat "$v" "$t" GIT_PAGER=cat git diff --stat "$v" "$t"
if which contrib.sh 2>/dev/null; then contrib.sh "$v"; fi if which contrib.sh &>/dev/null; then contrib.sh "$v"; fi
echo -e "run 'git log $v..$t' to see what has changed since $v" echo -e "run 'git log $v..$t' to see what has changed since $v"