]> git.openstreetmap.org Git - rails.git/commitdiff
--locales-dir is now config/locales by default
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Tue, 29 Sep 2009 09:00:53 +0000 (09:00 +0000)
committerÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Tue, 29 Sep 2009 09:00:53 +0000 (09:00 +0000)
script/locale/merge-from-translatewiki

index f053593b4fdc36fc538493bf5e813a6b9348b566..ab89b61d9d023a38d37a3a18bfbd4fe29b1db29c 100644 (file)
@@ -54,7 +54,7 @@ Print this help message.
 
 =item --locales-dir
 
-The locales dir we'll merge stuff into. E.g. C<config/locales>.
+The locales dir we'll merge stuff into. F<config/locales> by default.
 
 =item --only-new
 
@@ -73,14 +73,14 @@ Getopt::Long::Parser->new(
     config => [ qw< bundling no_ignore_case no_require_order pass_through > ],
 )->getoptions(
     'h|help' => \my $help,
-    'locales-dir=s' => \my $locales_dir,
+    'locales-dir=s' => \(my $locales_dir = 'config/locales'),
     'only-new' => \my $only_new,
 ) or help();
 
 # On --help
 help() if $help;
 
-help() unless $locales_dir;
+help() unless $locales_dir and -d $locales_dir;
 
 ###
 ### Main