redirecting output to log file

This commit is contained in:
Jean-Marie Renouard 2018-09-23 06:04:07 +00:00
parent 23b925373d
commit 38377c1f3d

View file

@ -148,4 +148,9 @@ before_script:
script:
- perlcritic --exclude InputOutput::ProhibitInteractiveTest mysqltuner.pl
- ./mysqltuner.pl --verbose --tbstat
- ./mysqltuner.pl --verbose --tbstat 1> stdout.txt 2>stderr.txt
after_script:
- echo "Standard Output: $(cat stdout.txt)"
- echo "Standard Error : $(cat stderr.txt)"