mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50: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
|
else
|
||||||
APKDIR=$1
|
APKDIR=$1
|
||||||
fi
|
fi
|
||||||
|
if [ ! -d "$APKDIR" ]; then
|
||||||
|
echo "ERROR: '$APKDIR' does not exist!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z $WORKSPACE ]; then
|
if [ -z $WORKSPACE ]; then
|
||||||
WORKSPACE=`dirname $(pwd)`
|
WORKSPACE=`dirname $(pwd)`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue