From 2d963915cb5bfea0516bf6d8b6406f5ecd00e527 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Sun, 12 Nov 2017 20:04:08 -0500 Subject: Add -l option to require libraries during eval. oops --- xmpt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/xmpt b/xmpt index e1f19ee..baa2710 100755 --- a/xmpt +++ b/xmpt @@ -19,13 +19,13 @@ my $templatepath = 'xml'; my @libs; my $help; -GetOptions('verbose|v' => \$verbose, - 'config|c=s' => \$configpath, - 'timeout|t=i' => \$timeout, - 'testplan|p=s' => \$testplanpath, - 'templates|d =s' => \$templatepath, - 'lib|l=s' => \@libs, - 'help|h' => \$help) || usage(1); +GetOptions('verbose|v' => \$verbose, + 'config|c=s' => \$configpath, + 'timeout|t=i' => \$timeout, + 'testplan|p=s' => \$testplanpath, + 'templates|d=s' => \$templatepath, + 'lib|l=s' => \@libs, + 'help|h' => \$help) || usage(1); usage(0) if $help; $| = 1; -- cgit v1.2.3