regression: Fix inverted verbose variable.

This commit is contained in:
Solomon Peachy 2019-05-19 09:11:12 -04:00
parent 4edc8cb292
commit 7fa79a2a84
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ if (defined($ENV{"STP_PARALLEL"})) {
$proc_count = $ENV{"STP_PARALLEL"}; $proc_count = $ENV{"STP_PARALLEL"};
}; };
if (defined($ENV{"STP_VERBOSE"})) { if (defined($ENV{"STP_VERBOSE"})) {
$quiet = $ENV{"STP_VERBOSE"}; $quiet = !$ENV{"STP_VERBOSE"};
}; };
if ($proc_count > 1) { if ($proc_count > 1) {