diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-31 03:21:40 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-31 03:21:40 +0000 |
commit | 56400a763cb2e56738fe82034dec5769b6d171a8 (patch) | |
tree | c0eada1f9bd37271e81fa654a9fbea425d57b781 | |
parent | b7ef7163c7286aacc22da4a193d5d2ee94e99843 (diff) |
fixed dist-vest bug in passing ref args after the first - explains the phil complaint and my bad oracle bleu tuning
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@463 ec762483-ff6d-05da-a07a-a48fb63a330f
-rwxr-xr-x | vest/dist-vest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl index 338ebb13..b66b8e9c 100755 --- a/vest/dist-vest.pl +++ b/vest/dist-vest.pl @@ -477,7 +477,7 @@ sub get_comma_sep_refs { my $o = `echo $p`; chomp $o; my @files = split /\s+/, $o; - return "-$r " . join(' -$r ', @files); + return "-$r " . join(" -$r ", @files); } sub read_weights_file { |