From 07442aa1198a5d22f0fe216913a2b1a9efd67ade Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Thu, 16 Aug 2012 11:12:40 +0000 Subject: [PATCH] Win32 tag build: avoid Windows paths in git commands git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22323 57a11ea4-9604-0410-9ed3-97b8803252fd --- packaging/win32/build_tags_git.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packaging/win32/build_tags_git.sh b/packaging/win32/build_tags_git.sh index 3dc7319797..1a03275688 100644 --- a/packaging/win32/build_tags_git.sh +++ b/packaging/win32/build_tags_git.sh @@ -80,10 +80,12 @@ for tag_rev in $tags ; do cp -p $(unix_path ${DOWNLOAD_DIR})/* ${tagbasedir}/downloads # Check out the tag and setup custom.sh - $GIT_CMD clone ${REPO_URL} ${tagdir}/repos - qpushd ${tagdir}/repos + qpushd ${tagdir} + $GIT_CMD clone ${REPO_URL} repos + qpushd repos $GIT_CMD checkout $tag qpopd + qpopd w32pkg=${tagdir}/repos/packaging/win32 cp -p "${pkgdir}/custom.sh" ${w32pkg}/custom.sh