From a3d56cb47e0c8637c855ec006ec17cb79dc39ba7 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 27 Nov 2010 05:57:04 +0000 Subject: The usual flailing associated with changing a s... The usual flailing associated with changing a shell script and using too recent a feature. Hopefully unbreaks build, no review. --- tools/get-scala-revision | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/get-scala-revision') diff --git a/tools/get-scala-revision b/tools/get-scala-revision index 0fa020de95..abf795476e 100755 --- a/tools/get-scala-revision +++ b/tools/get-scala-revision @@ -7,7 +7,7 @@ # If no dir is given, current working dir is used. DIR="" -if [[ $# -eq 0 ]]; then +if [ $# -eq 0 ]; then DIR=`pwd` else DIR=$1 @@ -15,9 +15,9 @@ fi builtin cd $DIR -if [[ -d .svn ]]; then +if [ -d .svn ]; then svn info . | grep ^Revision | sed 's/Revision: //' -elif [[ -d .git ]]; then +elif [ -d .git ]; then GIT_PAGER=cat # this grabs more than one line because otherwise if you have local # commits which aren't in git-svn it won't see any revision. -- cgit v1.2.3