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 | 78c13aa02075f07f7361bf53eea2a9a247f39575 (patch) | |
tree | aaf65fad8aea4fb53b5d0d844f3bd41c657eb00e | |
parent | 63d0fb9d1ebc557f9093a62c7b65a0ba808e9162 (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 { |