Skip to main content
summaryrefslogblamecommitdiffstats
blob: f369c4bdc5a9e78ea3cd52ce34b47c14de738bd7 (plain) (tree)
1
2
3
4
5



                                
                                  
























                                                               
#!/bin/bash
#

pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${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