Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorMélanie Bats2015-12-08 16:38:41 +0000
committerMélanie Bats2015-12-08 16:40:55 +0000
commit6acee9bcc96e266efcfd162d2944ac9f2cbe0389 (patch)
tree476214588b7aaf99fd0decabcb1d6a5382ba7216 /releng
parent02831c2a7c7415053486e45a34e958c1de8a25b7 (diff)
downloadorg.eclipse.eef-6acee9bcc96e266efcfd162d2944ac9f2cbe0389.tar.gz
org.eclipse.eef-6acee9bcc96e266efcfd162d2944ac9f2cbe0389.tar.xz
org.eclipse.eef-6acee9bcc96e266efcfd162d2944ac9f2cbe0389.zip
[build] Fix publish nightly script
Diffstat (limited to 'releng')
-rwxr-xr-xreleng/org.eclipse.eef.releng/publish-nightly.sh14
1 files changed, 1 insertions, 13 deletions
diff --git a/releng/org.eclipse.eef.releng/publish-nightly.sh b/releng/org.eclipse.eef.releng/publish-nightly.sh
index 5a0e72586..a603ce5c1 100755
--- a/releng/org.eclipse.eef.releng/publish-nightly.sh
+++ b/releng/org.eclipse.eef.releng/publish-nightly.sh
@@ -10,19 +10,6 @@
# Obeo - initial API and implementation
# ====================================================================
-[ -z "$WORKSPACE" -o -z "$PLATFORM" -o -z "$GIT_BRANCH" ] && {
- echo "Execution aborted.
-
-One or more of the required variables is not set. They are normally
-provided by the Hudson build.
-
-- WORKSPACE : the build workspace root.
-- PLATFORM : the name of the target Eclipse release (e.g. kepler).
-- GIT_BRANCH : the name fo the Git branch being build/published.
-"
- exit 1
-}
-
######################################################################
# Setup
######################################################################
@@ -32,6 +19,7 @@ set -e
# The full version (should be taken as an argument)
export VERSION="2.0.0"
+export PLATFORM="neon"
# The type of build being published
export BUILD_TYPE="nightly"

Back to the top