diff --git a/CommandLineClient/pom.xml b/CommandLineClient/pom.xml index 76b4f96..6658260 100644 --- a/CommandLineClient/pom.xml +++ b/CommandLineClient/pom.xml @@ -4,7 +4,7 @@ com.dslplatform dsl-clc jar - 1.9.5 + 1.9.6 DSL Platform - Compiler Command-Line Client https://github.com/ngs-doo/dsl-compiler-client Command line client for interaction with DSL Platform compiler (https://dsl-platform.com) diff --git a/CommandLineClient/src/main/java/com/dslplatform/compiler/client/parameters/DslCompiler.java b/CommandLineClient/src/main/java/com/dslplatform/compiler/client/parameters/DslCompiler.java index 58962f3..d7d1a07 100644 --- a/CommandLineClient/src/main/java/com/dslplatform/compiler/client/parameters/DslCompiler.java +++ b/CommandLineClient/src/main/java/com/dslplatform/compiler/client/parameters/DslCompiler.java @@ -55,6 +55,7 @@ public static Map 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 response = runCompiler(context, arguments);