summaryrefslogtreecommitdiffstats
path: root/autotest.sh
diff options
context:
space:
mode:
authorAndreas Schubert <andreas.schubert@mathema.de>2016-02-19 15:16:04 +0100
committerAndreas Schubert <andreas.schubert@mathema.de>2016-02-19 15:16:04 +0100
commit12f2525d4f718a536347e4715b092e36453848e4 (patch)
treef543264b0684d859b48c9e86829a2906535d94b2 /autotest.sh
parentae2304f23f04f1d6c84f2a049a4b0fdc0c9023c6 (diff)
downloadnextcloud-server-12f2525d4f718a536347e4715b092e36453848e4.tar.gz
nextcloud-server-12f2525d4f718a536347e4715b092e36453848e4.zip
moved set -e after executable checking with which as old position off set -e stopped the script at this point without any error message
Diffstat (limited to 'autotest.sh')
-rwxr-xr-xautotest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest.sh b/autotest.sh
index 61c21dc0ba2..d8d75817712 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -13,8 +13,6 @@
# @copyright 2012-2015 Thomas Müller thomas.mueller@tmit.eu
#
-set -e
-
#$EXECUTOR_NUMBER is set by Jenkins and allows us to run autotest in parallel
DATABASENAME=oc_autotest$EXECUTOR_NUMBER
DATABASEUSER=oc_autotest$EXECUTOR_NUMBER
@@ -34,6 +32,8 @@ fi
PHP=$(which "$PHP_EXE")
PHPUNIT=$(which phpunit)
+set -e
+
_XDEBUG_CONFIG=$XDEBUG_CONFIG
unset XDEBUG_CONFIG