From: Aaron Schrab Date: Tue, 22 Oct 2013 20:12:31 +0000 (-0500) Subject: version.sh: step back from $() to ``. closes #3661 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b20daf1956b574c8ac6c1d2ea46d2a8e6783474;p=neomutt version.sh: step back from $() to ``. closes #3661 --- diff --git a/version.sh b/version.sh index ba8463be1..d7988df72 100644 --- a/version.sh +++ b/version.sh @@ -5,7 +5,7 @@ HG=hg # Switch to directory where this script lives so that further commands are run # from the root directory of the source. The script path and srcdir are double # quoted to allow the space character to appear in the path. -srcdir=$(dirname "$0") && cd "$srcdir" || exit 1 +srcdir=`dirname "$0"` && cd "$srcdir" || exit 1 # Ensure that we have a repo here and that mercurial is installed. If # not, just cat the VERSION file; it contains the latest release number.