From b676973203818ed2e2552954164b76cb90063b7b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 16 Apr 2024 11:22:38 -0300 Subject: [PATCH] Bug 35681: (follow-up) Pass filehandle in skeleton.pl Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/atomicupdate/skeleton.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/data/mysql/atomicupdate/skeleton.pl b/installer/data/mysql/atomicupdate/skeleton.pl index 4838ae1a627..9e5738136b8 100755 --- a/installer/data/mysql/atomicupdate/skeleton.pl +++ b/installer/data/mysql/atomicupdate/skeleton.pl @@ -31,9 +31,9 @@ return { say $out "Added 'XXX' HTML customization"; # Other information - 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"); + say_failure( $out, "Use red for danger/failure" ); + say_success( $out, "Use green for success" ); + say_warning( $out, "Use yellow for warning/a call to action" ); + say_info( $out, "Use blue for further information" ); }, }; -- 2.44.0