diff options
author | Brian Cully <bjc@kublai.com> | 2017-11-12 20:04:08 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2017-11-12 20:04:21 -0500 |
commit | 2d963915cb5bfea0516bf6d8b6406f5ecd00e527 (patch) | |
tree | 944e44e33897672e0836d4939f836a4f4a66868b /xmpt | |
parent | d85845e9e5aa2bf76dcf76d972e18142697d3e92 (diff) | |
download | xmpt-2d963915cb5bfea0516bf6d8b6406f5ecd00e527.tar.gz xmpt-2d963915cb5bfea0516bf6d8b6406f5ecd00e527.zip |
Add -l option to require libraries during eval.
oops
Diffstat (limited to 'xmpt')
-rwxr-xr-x | xmpt | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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; |