Getopt::Long::Configure ("bundling");
GetOptions(
"v|verbose" => \ my $v,
+ "V|no-verbose" => \ my $nv,
"a|all" => \ $check{a},
"o|optional!" => \ $check{o},
"d|devel!" => \ $check{d},
"c|color!" => \ ( my $c = 1 ),
);
+# verbos is default
+if ( $v && $nv ){
+ $v = 1;
+}elsif ($nv){
+ undef $v;
+}else{
+ $v = 1;
+}
+
# if nothing is requested check "required"
my $default_run;
if (!defined $check{a}
Don't probe for LaTeX document classes and packages in master templates. (Useful in combination with --all)
-=item C<-v. --verbose>
+=item C<-v, --verbose>
+
+Print additional info for missing dependancies (enabled by default)
+
+=item C<-V, --no-verbose>
-Print additional info for missing dependancies
+Disable verbosity
=back