Skip to content

Commit

Permalink
Bug 35681: (follow-up) Pass filehandle in skeleton.pl
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Cohen Arazi <[email protected]>
Signed-off-by: Katrin Fischer <[email protected]>
  • Loading branch information
tomascohen authored and kfischer committed May 2, 2024
1 parent e3f4af2 commit 7904c1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installer/data/mysql/atomicupdate/skeleton.pl
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
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" );
},
};

0 comments on commit 7904c1b

Please sign in to comment.