You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2010/02/25 07:11:08 UTC

svn commit: r916146 - in /couchdb/branches/0.11.x: THANKS bootstrap

Author: jan
Date: Thu Feb 25 06:11:07 2010
New Revision: 916146

URL: http://svn.apache.org/viewvc?rev=916146&view=rev
Log:
Do not rely on specific format of `git log`. Closes COUCHDB-670. Patch by Matt Lyon.

Modified:
    couchdb/branches/0.11.x/THANKS
    couchdb/branches/0.11.x/bootstrap

Modified: couchdb/branches/0.11.x/THANKS
URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/THANKS?rev=916146&r1=916145&r2=916146&view=diff
==============================================================================
--- couchdb/branches/0.11.x/THANKS (original)
+++ couchdb/branches/0.11.x/THANKS Thu Feb 25 06:11:07 2010
@@ -47,5 +47,7 @@
  * Jan Kassens <ja...@kassens.net>
  * James Marca <jm...@translab.its.uci.edu>
  * Matt Goodall <ma...@gmail.com>
+ * Joel Clark <un...@yahoo.com>
+ * Matt Lyon <ma...@flowerpowered.com>
 
 For a list of authors see the `AUTHORS` file.

Modified: couchdb/branches/0.11.x/bootstrap
URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/bootstrap?rev=916146&r1=916145&r2=916146&view=diff
==============================================================================
--- couchdb/branches/0.11.x/bootstrap (original)
+++ couchdb/branches/0.11.x/bootstrap Thu Feb 25 06:11:07 2010
@@ -33,7 +33,7 @@
 
 if test -z "$REVISION"; then
     if test -d .git; then
-        REVISION=`git log | head -1 | awk '{print $2}' | cut -b 1-8`-git
+        REVISION=`git log --pretty="format:%h" | head -1`-git
     else
         # default to svn
         REVISION=`\`which svn\` info . 2> /dev/null | awk "/Revision:/{print \\$2}"`