aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2017-11-12 20:04:08 -0500
committerBrian Cully <bjc@kublai.com>2017-11-12 20:04:21 -0500
commit2d963915cb5bfea0516bf6d8b6406f5ecd00e527 (patch)
tree944e44e33897672e0836d4939f836a4f4a66868b
parentd85845e9e5aa2bf76dcf76d972e18142697d3e92 (diff)
downloadxmpt-2d963915cb5bfea0516bf6d8b6406f5ecd00e527.tar.gz
xmpt-2d963915cb5bfea0516bf6d8b6406f5ecd00e527.zip
Add -l option to require libraries during eval.
oops
-rwxr-xr-xxmpt14
1 files 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;