Use git log instead of git-log as the latter doesn't exist anymore in newer git versions
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 21 Feb 2009 17:02:51 +0000 (18:02 +0100)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 21 Feb 2009 17:02:51 +0000 (18:02 +0100)
update-common

index 396d4cd..ba1f51e 100755 (executable)
@@ -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