Skip to main content
summaryrefslogblamecommitdiffstats
blob: 2d6469f4743740bb2303c9b5aacb9219b682ed97 (plain) (tree)





























                                                               
#!/bin/bash
#

pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=$(pwd)
popd >/dev/null

set -- $( getopt -l buildArea:,stream:,branch: -o "" --  "$@" )


while [ $# -gt 0 ]; do
	case "$1" in
		"--buildArea")
			buildArea="$2"; shift;;
		"--stream")
			stream="$2"; shift;;
		"--branch")
			branch="$2"; shift;;
	esac
	shift
done

buildArea_branch=$buildArea/$branch
gitCache=$buildArea_branch/gitCache


if [ -r $gitCache/eclipse.platform.releng.aggregator ]; then
	pushd $gitCache/eclipse.platform.releng.aggregator
else
fi

Back to the top