diff options
author | Luca Toscano <elukey@apache.org> | 2019-12-22 11:45:03 +0100 |
---|---|---|
committer | Luca Toscano <elukey@apache.org> | 2019-12-22 11:45:03 +0100 |
commit | 250e7227702040d786136ec3a1690a57932564a7 (patch) | |
tree | 6b86ef9c23d2cbb09ad0c9f1f6ccff25865ebb8d /test/travis_before_linux.sh | |
parent | test/travis_before_linux.sh: add a simple bash retry to svn export (diff) | |
download | apache2-250e7227702040d786136ec3a1690a57932564a7.tar.xz apache2-250e7227702040d786136ec3a1690a57932564a7.zip |
test/travis_before_linux.sh: remove bash -e flag
To allow a proper fail/retry, -e needs to be removed.
Ideally this shouldn't happen, so I'd consider this
a test to see if the bash for workaround is a viable
option or not.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1871908 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_before_linux.sh')
-rwxr-xr-x | test/travis_before_linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh index c31d207f7a..04f63d9202 100755 --- a/test/travis_before_linux.sh +++ b/test/travis_before_linux.sh @@ -1,4 +1,4 @@ -#!/bin/bash -ex +#!/bin/bash -x if ! test -v SKIP_TESTING; then # Use a rudimental retry workflow as workaround to svn export hanging for minutes. # Travis automatically kills a build if one step takes more than 10 minutes without |