diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-09 17:01:00 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-09 17:01:00 +0100 |
commit | d4b3c50f7d14877cbf0bf9fd87807181e51ce93b (patch) | |
tree | 3a56f9dbcb521f50f058394417873ae02e0863d0 | |
parent | bfcd5a3802030ca97836aca1e658aec434162922 (diff) | |
parent | 0242c5c2d1a186ae9fb46465aa6c7d3ba7eade64 (diff) | |
download | nextcloud-server-d4b3c50f7d14877cbf0bf9fd87807181e51ce93b.tar.gz nextcloud-server-d4b3c50f7d14877cbf0bf9fd87807181e51ce93b.zip |
Merge pull request #12724 from owncloud/fix-autotest-no-file
Fix autotest no file
-rwxr-xr-x | autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotest.sh b/autotest.sh index abed4a8908a..7bb4c80cb9b 100755 --- a/autotest.sh +++ b/autotest.sh @@ -228,7 +228,7 @@ if [ -z "$1" ] done else FILENAME="$2" - if [ ! -f "tests/$FILENAME" ]; then + if [ ! -z "$2" ] && [ ! -f "tests/$FILENAME" ]; then FILENAME="../$FILENAME" fi execute_tests "$1" "$FILENAME" "$3" |