Minor spelling correction.
authoracli <acli>
Mon, 9 Feb 2004 23:34:08 +0000 (23:34 +0000)
committeracli <acli>
Mon, 9 Feb 2004 23:34:08 +0000 (23:34 +0000)
Don't proceed if the user specified an unknown option.

misc/translator/tmpl_process.pl

index 607a28d..d1b5082 100755 (executable)
@@ -18,7 +18,8 @@ GetOptions(
        'type=s' => \$type,
        'exclude=s' => \@excludes,
        'sep=s' => \$split_char,
-       'help'  => \$help);
+       'help'  => \$help,
+) || (usage(), exit(-1));
 
 help() if $help;
 
@@ -41,7 +42,7 @@ $filter = "./text-extract.pl -f" if !defined($filter);
 # Input is not a file nor a directory
 if( !(-d $in_files[0]) && !(-f $in_files[0]))
 {
-       usage("Unknow input. Input must a file or a directory. (Symbolic links are not supported for the moment).");
+       usage("Unknown input. Input must a file or a directory. (Symbolic links are not supported for the moment.)");
 }
 elsif( -d $in_files[0] )
 {