r22311 - gnucash/trunk/packaging/win32 - Win32: more fixes for git based tag build

Geert Janssens gjanssens at code.gnucash.org
Wed Aug 15 04:37:34 EDT 2012


Author: gjanssens
Date: 2012-08-15 04:37:34 -0400 (Wed, 15 Aug 2012)
New Revision: 22311
Trac: http://svn.gnucash.org/trac/changeset/22311

Modified:
   gnucash/trunk/packaging/win32/build_tags_git.sh
Log:
Win32: more fixes for git based tag build

Modified: gnucash/trunk/packaging/win32/build_tags_git.sh
===================================================================
--- gnucash/trunk/packaging/win32/build_tags_git.sh	2012-08-14 16:04:54 UTC (rev 22310)
+++ gnucash/trunk/packaging/win32/build_tags_git.sh	2012-08-15 08:37:34 UTC (rev 22311)
@@ -40,7 +40,7 @@
 if [ ! -f ${tagfile} ] ; then
   for one_tag in $($GIT_CMD tag)
   do
-    tag_hash=$($GIT_CMD rev_parse ${one_tag})
+    tag_hash=$($GIT_CMD rev-parse ${one_tag})
     echo ${one_tag}/${tag_hash} >> ${tagfile}
   done
 fi
@@ -49,7 +49,7 @@
 rm -f ${tagfile}.new
 for one_tag in $($GIT_CMD tag)
 do
-	tag_hash=$($GIT_CMD rev_parse ${one_tag})
+	tag_hash=$($GIT_CMD rev-parse ${one_tag})
 echo ${one_tag}/${tag_hash} >> ${tagfile}.new
 done
 tags="`diff --suppress-common-lines ${tagfile} ${tagfile}.new | grep '^> ' | sed -e 's/^> //g'`"



More information about the gnucash-changes mailing list