blob: 07bbc5c13a1228ce3e413e4918242c1ad9f92b6c [file] [log] [blame]
#!/bin/bash
if [[ "$GIT" == "" ]]; then
GIT=$WORKSPACE/git
fi
set -o nounset
set -o errexit
REPO=$1
REPO_FINAL=$2
REPO_NAME=$3
BUILD_TYPE=$4
CURDIR=`pwd -P`
cd "$REPO"
unzip -qq artifacts.jar
cd "$CURDIR"
java -cp "$GIT/org.eclipse.userstorage.releng/bin/" ArtifactRepositoryAdjuster \
"$REPO" \
"$REPO_FINAL" \
"$REPO_NAME"\
"$BUILD_TYPE"
cd "$REPO"
mv artifacts.out artifacts.xml
zip -r -9 -qq artifacts.jar artifacts.xml
rm artifacts.xml
cd "$CURDIR"