
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
12 lines
312 B
Perl
12 lines
312 B
Perl
#!perl
|
|
|
|
sub hook_user_balance($class, $username, $old, $delta, $new, $transaction_id, @) {
|
|
my $msg = "$transaction_id ($username)";
|
|
$msg =~ s/[^\x20-\x7E]//g;
|
|
$msg =~ s/'//g;
|
|
|
|
system("(git commit -am '$msg') > /dev/null 2>&1")
|
|
== 0 or warn "Meh, gitfaal";
|
|
system("git gc --auto");
|
|
}
|
|
|