Lines Matching refs:output
1224 my $output = `${git_command} ls-files -- $filename 2>/dev/null`;
1225 my $count = $output =~ tr/\n//;
1226 return $count eq 1 && $output =~ m{^${filename}$};
1234 my $output = `${git_command} log --no-color --format='%H %s' -1 $commit 2>&1`;
1235 $output =~ s/^\s*//gm;
1236 my @lines = split("\n", $output);
2341 my $output = '';
2344 $output .= RED;
2346 $output .= YELLOW;
2348 $output .= GREEN;
2351 $output .= $prefix . $level . ':';
2353 $output .= BLUE if ($color);
2354 $output .= "$type:";
2356 $output .= RESET if ($color);
2357 $output .= ' ' . $msg . "\n";
2360 my @lines = split("\n", $output, -1);
2362 $output = join("\n", @lines);
2366 $output = (split('\n', $output))[0] . "\n";
2371 $output .= $verbose_messages{$type} . "\n\n";
2375 push(our @report, $output);