Bug 16039: Remove useless exit

pod2usage will exit with the status given in parameter.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
Jonathan Druart 2016-03-21 15:04:56 +00:00 committed by Brendan A Gallagher
parent 59e3b97a0c
commit c831b6deb3

View file

@ -19,8 +19,7 @@ GetOptions(
) || pod2usage(1);
if ($help) {
pod2usage(1);
exit;
pod2usage(0);
}
unless ( C4::Context->preference('UsageStats') ) {