Lines Matching refs:output
1237 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1238 my $count = $output =~ tr/\n//;
1239 return $count eq 1 && $output =~ m{^${filename}$};
1247 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1248 $output =~ s/^\s*//gm;
1249 my @lines = split("\n", $output);
2354 my $output = '';
2357 $output .= RED;
2359 $output .= YELLOW;
2361 $output .= GREEN;
2364 $output .= $prefix . $level . ':';
2366 $output .= BLUE if ($color);
2367 $output .= "$type:";
2369 $output .= RESET if ($color);
2370 $output .= ' ' . $msg . "\n";
2373 my @lines = split("\n", $output, -1);
2375 $output = join("\n", @lines);
2379 $output = (split('\n', $output))[0] . "\n";
2384 $output .= $verbose_messages{$type} . "\n\n";
2388 push(our @report, $output);