From: Rudolf Polzer Date: Fri, 2 Jul 2010 12:04:00 +0000 (+0200) Subject: rev-list, not rev-parse X-Git-Tag: xonotic-v0.1.0preview~387 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=165b5c3178c590310f43d8cbacfed2dc4e2e2e3e rev-list, not rev-parse --- diff --git a/all b/all index eefa5cb5..fcefc94e 100755 --- a/all +++ b/all @@ -673,8 +673,8 @@ case "$cmd" in realbase=$base ;; *) - l0=`git rev-parse "$base".."$ref" | wc -l` - l1=`git rev-parse master.."$ref" | wc -l` + l0=`git rev-list "$base".."$ref" | wc -l` + l1=`git rev-list master.."$ref" | wc -l` if [ $l0 -gt $l1 ]; then realbase=master else