mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03: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
1 changed files with 4 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue