redirecting output to log file
This commit is contained in:
parent
23b925373d
commit
38377c1f3d
1 changed files with 6 additions and 1 deletions
|
@ -148,4 +148,9 @@ before_script:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- perlcritic --exclude InputOutput::ProhibitInteractiveTest mysqltuner.pl
|
- 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)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue