Tomas Cohen Arazi
2f554fd288
This has no effect as it is not causing problems. But. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
14 lines
340 B
Perl
Executable file
14 lines
340 B
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "BUG_NUMBER",
|
|
description => "A single line description",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my ($dbh, $out) = @$args{qw(dbh out)};
|
|
# Do you stuffs here
|
|
$dbh->do(q{});
|
|
# Print useful stuff here
|
|
say $out "Update is going well so far";
|
|
},
|
|
};
|