diff options
Diffstat (limited to 'make/unit-cc.pl')
-rwxr-xr-x | make/unit-cc.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/unit-cc.pl b/make/unit-cc.pl index f8991cb67..f555c3812 100755 --- a/make/unit-cc.pl +++ b/make/unit-cc.pl @@ -57,9 +57,9 @@ exit 1; sub message($$$) { my ($type, $file, $command) = @_; if ($ENV{INSPIRCD_VERBOSE}) { - print "$command\n"; + say $command; } else { - print_format "\t<|GREEN $type:|>\t\t$file\n"; + say console_format "\t<|GREEN $type:|>\t\t$file"; } } |