mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01: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:
parent
ebb8a6bf30
commit
cf2c1d0270
@ -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)`
|
||||
|
Loading…
Reference in New Issue
Block a user