]> granicus.if.org Git - mutt/commitdiff
Switch to using [ -r ] in version.sh for Bourne shell compatibility.
authorKevin McCarthy <kevin@8t8.us>
Mon, 16 Apr 2018 23:29:08 +0000 (16:29 -0700)
committerKevin McCarthy <kevin@8t8.us>
Mon, 16 Apr 2018 23:29:08 +0000 (16:29 -0700)
Thanks to Paul Keusemann for pointing out the issue.

version.sh

index bc850f6c71f033cf1e0311a96914ac5008afa6bd..537be325c3b34ebea67460e5c15e8e839d161c3f 100644 (file)
@@ -7,7 +7,7 @@ srcdir=`dirname "$0"` && cd "$srcdir" || exit 1
 
 # Ensure that we have a repo here.
 # If not, just cat the VERSION file; it contains the latest release number.
-{ [ -e ".git" ] && command -v git >/dev/null 2>&1; } \
+{ [ -r ".git" ] && command -v git >/dev/null 2>&1; } \
 || exec cat VERSION
 
 latesttag="$(git describe --tags --match 'mutt-*-rel' --abbrev=0)"