blob: e5cf41c11aa84833ef43079d02b08a808ba705ea [file] [log] [blame]
#!/usr/bin/env bash
#*******************************************************************************
# Copyright (c) 2016 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# IBM Corporation - initial API and implementation
#*******************************************************************************
release=$1
datetimestamp=$2
if [ -z "$datetimestamp" ] ; then
echo "ERROR: 'datetimestamp' directory variable is required for this script.";
exit 1;
fi
if [[ -z "${release}" ]]
then
echo
echo " ERROR: The 'release' environment variable is required for this script."
echo
exit 1
else
echo
echo "release: ${release}"
echo
fi
source promote.shsource 2>/dev/null
source "${BUILD_HOME}/tools/promoteUtils/promote.shsource"
APP_NAME=org.eclipse.wtp.releng.tools.addRepoProperties
devworkspace="${BUILD_HOME}/workspace-addRepoProperties"
echo "dev: $0"
echo
echo "release: $release"
echo
echo "datetimestampe: $datetimestamp"
echo
echo "devworkspace: $devworkspace"
echo
echo "JAVA_CMD: $JAVA_CMD"
echo
echo "devArgs: $devArgs"
echo
echo "APP_NAME: $APP_NAME"
$JAVA_CMD -version
echo
"${ECLIPSE_EXE}" -debug -nosplash -consolelog -console -data "$devworkspace" --launcher.suppressErrors -application "${APP_NAME}" "${OTHER_ARGS}" -vm "$JAVA_CMD" -vmargs $devArgs