Fix publish script bug with BUILD_TYPE=R parameter from Hudson
diff --git a/org.eclipse.gmf.notation.repository/gmf-notation-hipp-publish.sh b/org.eclipse.gmf.notation.repository/gmf-notation-hipp-publish.sh
index 200fb50..6c9f9de 100644
--- a/org.eclipse.gmf.notation.repository/gmf-notation-hipp-publish.sh
+++ b/org.eclipse.gmf.notation.repository/gmf-notation-hipp-publish.sh
@@ -66,8 +66,8 @@
remoteUpdateSite="/home/data/httpd/download.eclipse.org/$remoteUpdateSiteBase"
echo "`date +%Y-%m-%d-%H:%M:%S` Publishing to remote update-site: $remoteUpdateSite"
-if [ -z "$dropFilesLabel" -a "$buildType" != i -a "$buildType" != I ]; then
- echo "Please provide a drop files label to append to the version (e.g. M5, RC1) if this is not an I build."
+if [ -z "$dropFilesLabel" -a "$buildType" != i -a "$buildType" != I -a "$buildType" != r -a "$buildType" != R]; then
+ echo "Please provide a drop files label to append to the version (e.g. M5, RC1) if this is not an I or R build."
exit 0
fi