From 86a790225c260256a84b40f66de996124219a1ae Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Thu, 16 Aug 2012 10:27:38 +0000 Subject: [PATCH] Win32 tag builds: match tag cache syntax with the actual tag checks git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22320 57a11ea4-9604-0410-9ed3-97b8803252fd --- packaging/win32/build_tags_git.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/win32/build_tags_git.sh b/packaging/win32/build_tags_git.sh index 18ca7b1bf6..fc73b881f3 100644 --- a/packaging/win32/build_tags_git.sh +++ b/packaging/win32/build_tags_git.sh @@ -48,7 +48,7 @@ if [ ! -f ${tagfile} ] ; then 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 @@ fi 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'`"