@@ -, +, @@ --- installer/data/mysql/atomicupdate/skeleton.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/installer/data/mysql/atomicupdate/skeleton.pl +++ a/installer/data/mysql/atomicupdate/skeleton.pl @@ -1,5 +1,5 @@ use Modern::Perl; -use Term::ANSIColor; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "BUG_NUMBER", @@ -31,9 +31,9 @@ return { say $out "Added 'XXX' HTML customization"; # Other information - say $out colored("Use red for danger/failure", 'red'); - say $out colored("Use green for success", 'green'); - say $out colored("Use yellow for warning/a call to action", 'yellow'); - say $out colored("Use blue for further information", 'blue'); + say_failure("Use red for danger/failure"); + say_success("Use green for success"); + say_warning("Use yellow for warning/a call to action"); + say_info("Use blue for further information"); }, }; --