r22320 - gnucash/trunk/packaging/win32 - Win32 tag builds: match tag cache syntax with the actual tag checks

Geert Janssens gjanssens at code.gnucash.org
Thu Aug 16 06:27:38 EDT 2012


Author: gjanssens
Date: 2012-08-16 06:27:38 -0400 (Thu, 16 Aug 2012)
New Revision: 22320
Trac: http://svn.gnucash.org/trac/changeset/22320

Modified:
   gnucash/trunk/packaging/win32/build_tags_git.sh
Log:
Win32 tag builds: match tag cache syntax with the actual tag checks

Modified: gnucash/trunk/packaging/win32/build_tags_git.sh
===================================================================
--- gnucash/trunk/packaging/win32/build_tags_git.sh	2012-08-16 10:15:48 UTC (rev 22319)
+++ gnucash/trunk/packaging/win32/build_tags_git.sh	2012-08-16 10:27:38 UTC (rev 22320)
@@ -48,7 +48,7 @@
   for one_tag in $($GIT_CMD tag)
   do
     tag_hash=$($GIT_CMD rev-parse ${one_tag})
-    echo ${one_tag}/${tag_hash} >> ${tagfile}
+    echo ${tag_hash}/${one_tag} >> ${tagfile}
   done
 fi
 
@@ -56,8 +56,8 @@
 rm -f ${tagfile}.new
 for one_tag in $($GIT_CMD tag)
 do
-	tag_hash=$($GIT_CMD rev-parse ${one_tag})
-echo ${one_tag}/${tag_hash} >> ${tagfile}.new
+  tag_hash=$($GIT_CMD rev-parse ${one_tag})
+  echo ${tag_hash}/${one_tag} >> ${tagfile}.new
 done
 tags="`diff --suppress-common-lines ${tagfile} ${tagfile}.new | grep '^> ' | sed -e 's/^> //g'`"
 



More information about the gnucash-changes mailing list