From: zwelch Date: Wed, 30 Sep 2009 23:20:13 +0000 (+0000) Subject: Add workaround to release script to update source code URL keyword. X-Git-Tag: v0.3.0-rc0~167 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=14be11990630e3b23753fd3af35d5ed16375454d Add workaround to release script to update source code URL keyword. git-svn-id: svn://svn.berlios.de/openocd/trunk@2784 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/tools/release.sh b/tools/release.sh index c1f7f7c221..c6ab64fe7c 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -495,10 +495,17 @@ do_release_step_package() { local A=${PACKAGE_TAG} local B=${A/https/http} local PACKAGE_BUILD=${B/${USER}@/} + do_svn_switch "${PACKAGE_TAG}" do_svn_switch --relocate "${PACKAGE_TAG}" "${PACKAGE_BUILD}" + + # required to force SVN to update the in-source URL keyword + [ "${RELEASE_DRY_RUN}" ] || rm -v -f src/openocd.c + do_svn revert src/openocd.c + do_stage do_clean + do_svn_switch --relocate "${PACKAGE_BUILD}" "${PACKAGE_TAG}" do_svn_switch "${SVN_URL}" }