Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlorenzo2012-01-12 10:45:01 +0000
committervlorenzo2012-01-12 10:45:01 +0000
commitdb3eb3a0f15c27edfff90bee8e7918184a04c0a8 (patch)
tree627f245f8e59758c1ea4c16571953dae5a64e607
parent6bc1e18f6d9f31f169c2b5bd66b40c01f257d632 (diff)
downloadorg.eclipse.papyrus-db3eb3a0f15c27edfff90bee8e7918184a04c0a8.tar.gz
org.eclipse.papyrus-db3eb3a0f15c27edfff90bee8e7918184a04c0a8.tar.xz
org.eclipse.papyrus-db3eb3a0f15c27edfff90bee8e7918184a04c0a8.zip
NEW - Bug 365919: [Architecture - SVN - Build] Rewrite the Build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=365919 build publishing
-rw-r--r--releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig/promoteFunctions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig/promoteFunctions.sh b/releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig/promoteFunctions.sh
index 1c0b9fbe3fa..8bb57fa982f 100644
--- a/releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig/promoteFunctions.sh
+++ b/releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig/promoteFunctions.sh
@@ -62,7 +62,7 @@ function promote() {
[ -n "$_updateZipPrefix" ] || { echo "empty parameter: updateZipPrefix"; exit 1; }
[[ "$_branchToTag" =~ ^trunk|branches/[0-9]+_[0-9]+|NA$ ]] || { echo "incorrect parameter: branchToTag"; exit 1; }
for (( i = 0 ; i < ${#SVN_DIRECTORIES_TO_TAG[*]} ; i++ )); do
- [[ "${SVN_DIRECTORIES_TO_TAG[$i]}" =~ ^/svnroot/.*$ ]] || { echo "incorrect variable: SVN_DIRECTORIES_TO_TAG"; exit 1; }
+ [[ "${SVN_DIRECTORIES_TO_TAG[$i]}" =~ ^file:///svnroot/.*$ ]] || { echo "incorrect variable: SVN_DIRECTORIES_TO_TAG"; exit 1; }
done
echo "[$DATE] creating working dir"

Back to the top