From 06f18c1c1bbf443266320a0975d0d98dd01347fa Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Sun, 23 Sep 2018 06:05:44 +0000 Subject: [PATCH] redirecting output to log file with tee --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5bede4e..b2ced15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -148,7 +148,7 @@ before_script: script: - perlcritic --exclude InputOutput::ProhibitInteractiveTest mysqltuner.pl - - ./mysqltuner.pl --verbose --tbstat 1> stdout.txt 2>stderr.txt + - ./mysqltuner.pl --verbose --tbstat 2>stderr.txt | tee -a "stdout.txt" after_script: - echo "Standard Output: $(cat stdout.txt)"