From: Sebastian Dröge Date: Sat, 21 Feb 2009 17:02:51 +0000 (+0100) Subject: Use git log instead of git-log as the latter doesn't exist anymore in newer git versions X-Git-Tag: upstream/20130618~243 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa2396bd767fa688f67c37f9287918b0b8b83ebf;p=platform%2Fupstream%2Fgst-common.git Use git log instead of git-log as the latter doesn't exist anymore in newer git versions --- diff --git a/update-common b/update-common index 396d4cd..ba1f51e 100755 --- a/update-common +++ b/update-common @@ -33,10 +33,10 @@ do git submodule init git submodule update cd $dir/$module/common - ref_from=`git-log --pretty=format:%h -n 1 HEAD` + ref_from=`git log --pretty=format:%h -n 1 HEAD` git checkout master git pull origin - ref_to=`git-log --pretty=format:%h -n 1 HEAD` + ref_to=`git log --pretty=format:%h -n 1 HEAD` echo updating common from $ref_from to $ref_to if [ "$ref_from" != "$ref_to" ] ; then cd $dir/$module