Skip to content

Commit

Permalink
Merge pull request #20 from GEM-benchmark/evanmiltenburg-patch-1
Browse files Browse the repository at this point in the history
Fix for #18
  • Loading branch information
sebastianGehrmann authored Feb 3, 2021
2 parents 9cdb142 + 0dd5c66 commit 8aa660b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gem_metrics/impl/meteor.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, language):
# meteor uses a wrong language abbreviation for Czech
meteor_language = 'cz' if self.language == 'cs' else self.language
self.meteor_path = self.check_meteor()
self.meteor_cmd = ['java', '-jar', '-Xmx2G', METEOR_JAR,
self.meteor_cmd = ['java', '-jar', '-Xmx2G', '-Duser.language=en', '-Duser.country=US', METEOR_JAR,
'-', '-', '-stdio', '-l', meteor_language, '-norm']
self.meteor_p = subprocess.Popen(self.meteor_cmd,
cwd=os.path.dirname(self.meteor_path),
Expand Down

0 comments on commit 8aa660b

Please sign in to comment.