diff options
author | Sadie Powell <sadie@witchery.services> | 2021-02-28 19:55:31 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-02-28 19:55:31 +0000 |
commit | 85a4184ab473c407fb07cc46d73de70d2897157e (patch) | |
tree | b6dbbdc44d7ccf81b8c6487cea76107b5d2791a2 /make/console.pm | |
parent | 384c880cc67fef92599a47ffab45af0c4c8f78f6 (diff) |
Fix print_warning using print instead of say.
Diffstat (limited to 'make/console.pm')
-rw-r--r-- | make/console.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/console.pm b/make/console.pm index e6f8d4838..023108820 100644 --- a/make/console.pm +++ b/make/console.pm @@ -79,7 +79,7 @@ sub print_error { sub print_warning { print STDERR console_format "<|YELLOW Warning:|> "; for my $line (@_) { - print STDERR console_format $line; + say STDERR console_format $line; } } |