
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.
23 lines
538 B
Perl
23 lines
538 B
Perl
#!perl
|
|
|
|
HELP "restart" => "Attempt to restart the RevBank shell";
|
|
|
|
sub command :Tab(restart) ($self, $cart, $command, @) {
|
|
return NEXT if $command ne 'restart';
|
|
|
|
no warnings;
|
|
call_hooks("restart_exec");
|
|
exec $0;
|
|
call_hooks("restart_survived");
|
|
|
|
return ABORT, "exec() failed. You'll have to restart revbank yourself :P";
|
|
}
|
|
|
|
sub hook_input($class, $cart, $input, $split_input, @) {
|
|
return if defined $input;
|
|
|
|
no warnings;
|
|
call_hooks("restart_restart");
|
|
exec $0;
|
|
call_hooks("restart_survived");
|
|
}
|