mosesdecoder/scripts/regression-testing/create_localized_moses_ini.pl
Jeroen Vermeulen a25193cc5d Fix a lot of lint, mostly trailing whitespace.
This is lint reported by the new lint-checking functionality in beautify.py.
(We can change to a different lint checker if we have a better one, but it
would probably still flag these same problems.)

Lint checking can help a lot, but only if we get the lint under control.
2015-05-17 20:04:04 +07:00

19 lines
559 B
Perl
Executable File

#!/usr/bin/env perl
use warnings;
use strict;
my $script_dir; BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, $script_dir; }
use MosesScriptsRegressionTesting;
my $data_dir=$ARGV[0]; shift(@ARGV);
my $conf=$ARGV[0]; shift(@ARGV);
print STDERR "configuration file: |$conf|\n";
print STDERR "data_dir: |$data_dir|\n";
my $local_moses_ini = MosesScriptsRegressionTesting::get_localized_moses_ini($conf, $data_dir);
print STDERR "local_moses_ini: |$local_moses_ini|\n";
print STDOUT "$local_moses_ini\n";