From fe7e1fe0898c7b082e62ea24a1f6653d856ac043 Mon Sep 17 00:00:00 2001 From: zonkzonk Date: Thu, 8 May 2014 01:08:52 +0200 Subject: [PATCH] remove a hg reference in install-rev --- sys/install-rev.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sys/install-rev.sh b/sys/install-rev.sh index 73573dc595..aa4afe1376 100755 --- a/sys/install-rev.sh +++ b/sys/install-rev.sh @@ -11,10 +11,7 @@ gmake --help >/dev/null 2>&1 # find root cd `dirname $PWD/$0` ; cd .. -if [ -d .hg ]; then - echo hg up -C -r "${REV}" - hg up -C -r "${REV}" -elif [ -d .git ]; then +if [ -d .git ]; then echo git checkout "${REV}" git checkout "${REV}" fi