Skip to content

Commit

Permalink
Issue #81. Tweak error message when layer config file is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray authored and gunnarmorling committed Feb 2, 2021
1 parent 1951f74 commit 02a462f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ public static void launch(String... args) throws Exception {
}
if (null == layersConfig) {
jCommander.getConsole()
.println("Missing --layers-config parameter or local file named layers" + getSupportedConfigFormats());
.println("Missing --layers-config parameter or local file named layers[" +
String.join("|", getSupportedConfigFormats()) + "]");
jCommander.getConsole().println("");
printUsage(jCommander);
return;
Expand Down

0 comments on commit 02a462f

Please sign in to comment.