View | Details | Raw Unified | Return to bug 35681
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/skeleton.pl (-1 / +7 lines)
Lines 1-4 Link Here
1
use Modern::Perl;
1
use Modern::Perl;
2
use Term::ANSIColor;
2
3
3
return {
4
return {
4
    bug_number  => "BUG_NUMBER",
5
    bug_number  => "BUG_NUMBER",
Lines 28-32 return { Link Here
28
29
29
        # HTML customizations
30
        # HTML customizations
30
        say $out "Added 'XXX' HTML customization";
31
        say $out "Added 'XXX' HTML customization";
32
33
        # Other information
34
        say $out colored("Use red for danger/failure", 'red');
35
        say $out colored("Use green for success", 'green');
36
        say $out colored("Use yellow for warning/a call to action", 'yellow');
37
        say $out colored("Use blue for further information", 'blue');
31
    },
38
    },
32
};
39
};
33
- 

Return to bug 35681