Skip to content

Commit

Permalink
CLC improvement
Browse files Browse the repository at this point in the history
Explicitly request file extension when doing compilation
  • Loading branch information
zapov committed May 14, 2018
1 parent 86f0832 commit 240dd6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CommandLineClient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.dslplatform</groupId>
<artifactId>dsl-clc</artifactId>
<packaging>jar</packaging>
<version>1.9.5</version>
<version>1.9.6</version>
<name>DSL Platform - Compiler Command-Line Client</name>
<url>https://github.com/ngs-doo/dsl-compiler-client</url>
<description>Command line client for interaction with DSL Platform compiler (https://dsl-platform.com)</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static Map<String, String> compile(
for (final File f : dsls) {
arguments.add("dsl=" + f.getAbsolutePath());
}
arguments.add("file-extension");
context.log("Compiling DSL to " + target + "...");
final long start = new Date().getTime();
final Either<byte[]> response = runCompiler(context, arguments);
Expand Down

0 comments on commit 240dd6b

Please sign in to comment.