summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtravis/travis.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/travis/travis.sh b/travis/travis.sh
index 5b246b64fb9..77bfebf2505 100755
--- a/travis/travis.sh
+++ b/travis/travis.sh
@@ -5,7 +5,7 @@ set -e
# Workaround for Travis log output timeout (jobs without output over 10 minutes are killed)
function bell() {
while true; do
- echo -e "\a"
+ echo "."
sleep 300
done
}
@@ -16,4 +16,3 @@ bell &
docker run --rm -v ${HOME}/.m2:/root/.m2 -v ${HOME}/.ccache:/root/.ccache -v $(pwd):/source \
--entrypoint /source/travis/travis-build-full.sh ${DOCKER_IMAGE}
exit $?
-