Skip to content

Commit

Permalink
Merge pull request #809 from jmrenouard/master
Browse files Browse the repository at this point in the history
Fixing #807 #808 #806
  • Loading branch information
jmrenouard authored Nov 14, 2024
2 parents 9fbfb60 + c4a3730 commit a0784d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ package main;

$opt{cvefile} = 'vulnerabilities.csv'; #CVE File for vulnerability checks
}
$opt{prettyicon}=0 if $opt{prettyicon}!=1;
$opt{noprettyicon}=0 if $opt{noprettyicon}!=1;
$opt{nocolor} = 1 if defined( $opt{outputfile} );
$opt{tbstat} = 0 if ( $opt{notbstat} == 1 ); # Don't print table information
$opt{colstat} = 0 if ( $opt{nocolstat} == 1 ); # Don't print column information
Expand Down Expand Up @@ -286,7 +286,7 @@ package main;
my $cmd = ( $opt{nocolor} == 0 ) ? "\e[1;32m[CMD]($me)" : "[CMD]($me)";
my $end = ( $opt{nocolor} == 0 ) ? "\e[0m" : "";

if ($opt{prettyicon} == 1) {
if ($opt{noprettyicon} == 0) {
$good = "";
$bad = "";
$info = "";
Expand Down

0 comments on commit a0784d7

Please sign in to comment.