summaryrefslogtreecommitdiffstats
path: root/maven/make-tests-deploy.sh
blob: e4aadd83f0e751dfcf6a55f361be3d45c3a58eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

if [ $# -ne 1 ]
then
  echo "usage: version" 1>&2
  exit 1
fi

VERSION="$1"
shift

PWD=`pwd` || exit 1

export REPOSITORY_ID="tests"
export REPOSITORY_URL="file://${PWD}/tests-repository"

./make-deploy.sh "${VERSION}"