Revert r19159, "Fix windows tag build script, by Geert Janssens"

I thought I would get access to the build server immediately to
perform the cleanup of the old tag file, but apparently the server is
unreachable for me for now, so I cannot commit this change today. Maybe later.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19164 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2010-05-14 09:00:57 +00:00
parent 467bc2e371
commit 6f9fb67c5d

View File

@ -25,12 +25,12 @@ svn update
# If we don't have a tagfile then start from 'now'
tagfile=tags
if [ ! -f ${tagfile} ] ; then
svn ls -v ${TAG_URL} | awk '/[^.]\/$/ { print $6$1 }' > ${tagfile}
svn ls ${TAG_URL} > ${tagfile}
fi
# Figure out the new set of tags
svn ls -v ${TAG_URL} | awk '/[^.]\/$/ { print $6$1 }' > ${tagfile}.new
tags="`diff --suppress-common-lines ${tagfile} ${tagfile}.new | grep '^> ' | sed -e 's/^> //g'`"
svn ls ${TAG_URL} > ${tagfile}.new
tags="`diff --suppress-common-lines ${tagfile} ${tagfile}.new | grep '^> ' | sed -e 's/^> //g' -e 's#/$##g'`"
# move the new file into place
mv -f ${tagfile}.new ${tagfile}
@ -38,11 +38,9 @@ mv -f ${tagfile}.new ${tagfile}
################################################################
# Now iterate over all the new tags (if any) and build a package
for tag_rev in $tags ; do
tag=${tag_rev%/*}
for tag in $tags ; do
tagbasedir=/c/soft/gnucash-${tag}
tagdir=${tagbasedir}/gnucash
rm -fr $tagbasedir
mkdir -p ${tagdir}
# Copy the downloads to save time