Fix compilation for maven build

This commit is contained in:
pTalanov
2012-05-16 17:42:38 +04:00
parent feaf218836
commit c8fe0080c7
3 changed files with 13 additions and 11 deletions
@@ -120,9 +120,10 @@ public class K2JSCompiler extends CLICompiler<K2JSCompilerArguments, K2JSCompile
@NotNull
private static Config getConfig(@NotNull K2JSCompilerArguments arguments, @NotNull Project project) {
EcmaVersion ecmaVersion = EcmaVersion.fromString(arguments.target);
if (arguments.libzip == null) {
return Config.getEmptyConfig(project, arguments.target);
return Config.getEmptyConfig(project, ecmaVersion);
}
return new ZippedLibrarySourcesConfig(project, arguments.libzip, EcmaVersion.fromString(arguments.target));
return new ZippedLibrarySourcesConfig(project, arguments.libzip, ecmaVersion);
}
}