1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 01:40:10 +02:00

run-tests needs a source of APKs to function

The test runs on jenkins.debian.net were failing because they
specified a dir that did not exist.
This commit is contained in:
Hans-Christoph Steiner 2019-09-25 12:21:04 +02:00
parent ebb8a6bf30
commit cf2c1d0270
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA

View File

@ -99,6 +99,10 @@ if [ -z "$1" ]; then
else
APKDIR=$1
fi
if [ ! -d "$APKDIR" ]; then
echo "ERROR: '$APKDIR' does not exist!"
exit 1
fi
if [ -z $WORKSPACE ]; then
WORKSPACE=`dirname $(pwd)`