restart: only suppress warnings of the 'exec' category

"Statement unlikely to be reached" is the expected warning here.
This commit is contained in:
Juerd Waalboer 2023-11-02 03:12:26 +01:00
parent 4664245b8b
commit 4f0954b2dc

View file

@ -1,12 +1,13 @@
#!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");
no warnings qw(exec);
exec $0;
call_hooks("restart_survived");
@ -16,8 +17,8 @@ sub command :Tab(restart) ($self, $cart, $command, @) {
sub hook_input($class, $cart, $input, $split_input, @) {
return if defined $input;
no warnings;
call_hooks("restart_restart");
no warnings qw(exec);
exec $0;
call_hooks("restart_survived");
}