]> source.dussan.org Git - nextcloud-server.git/commitdiff
moved set -e after executable checking with which as old position off set -e stopped...
authorAndreas Schubert <andreas.schubert@mathema.de>
Fri, 19 Feb 2016 14:16:04 +0000 (15:16 +0100)
committerAndreas Schubert <andreas.schubert@mathema.de>
Fri, 19 Feb 2016 14:16:04 +0000 (15:16 +0100)
autotest.sh

index 61c21dc0ba23a9ef0c7497d592ca0baa3bb9c6dd..d8d75817712f8d55abdcff2c163c786424d463d8 100755 (executable)
@@ -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