diff --git a/plugins/restart b/plugins/restart index 8e77f16..7f32d62 100644 --- a/plugins/restart +++ b/plugins/restart @@ -13,12 +13,3 @@ sub command :Tab(restart) ($self, $cart, $command, @) { return ABORT, "exec() failed. You'll have to restart revbank yourself :P"; } - -sub hook_input($class, $cart, $input, $split_input, @) { - return if defined $input; - - call_hooks("restart_restart"); - no warnings qw(exec); - exec $0; - call_hooks("restart_survived"); -} diff --git a/revbank b/revbank index b991557..4fdbb7a 100755 --- a/revbank +++ b/revbank @@ -18,7 +18,7 @@ use RevBank::Messages; use RevBank::Cart; use RevBank::Prompt; -our $VERSION = "5.1.1"; +our $VERSION = "5.1.2"; our %HELP1 = ( "abort" => "Abort the current transaction", ); @@ -112,6 +112,10 @@ OUTER: for (;;) { my $input = RevBank::Prompt::prompt( $prompt, \@completions, $default, $pos, $cart, \@plugins ); + if (not defined $input) { + # Controlling terminal gone + exit if eof STDIN; + } call_hooks "input", $cart, $input, $split_input;