summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xupdate-common4
1 files changed, 2 insertions, 2 deletions
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