Skip to content

Commit dedc23d

Browse files
committed
Fix "docs" commandline tool output
1 parent c89ca55 commit dedc23d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/laytonsmith/core/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ public static void main(String[] args) throws Exception {
406406
}
407407
//Documentation generator
408408
StreamUtils.GetSystemErr().print("Creating " + docs + " documentation...");
409-
DocGen.functions(docs, api.Platforms.INTERPRETER_JAVA, true);
409+
StreamUtils.GetSystemOut().println(DocGen.functions(docs, api.Platforms.INTERPRETER_JAVA, true));
410410
StreamUtils.GetSystemErr().println("Done.");
411411
System.exit(0);
412412
} else if(mode == EXAMPLES_MODE) {

0 commit comments

Comments
 (0)