From: Eric Haszlakiewicz Date: Wed, 8 Apr 2020 02:17:14 +0000 (+0000) Subject: Wait a while before exiting travis to allow output to flush. X-Git-Tag: json-c-0.14-20200419~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=829e0829dd5417484f0ec979b6564ce74991eec5;p=json-c Wait a while before exiting travis to allow output to flush. --- diff --git a/.travis.yml b/.travis.yml index 269e993..bae9bfe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,6 +124,8 @@ before_install: fi before_script: + # Wait a while for output to flush :( + - onexit() { sleep 20; }; trap onexit 0 - mkdir -p build || (echo "Failed to mkdir build" ; false) - cd build || (echo "Failed to cd build" ; false) - cmake .. || (echo "Failed to run cmake"; false)