Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 22ec7ed

Browse files
author
Aleksi Salmela
committed
Add more line breaks at the admin help message.
1 parent f73cc8f commit 22ec7ed

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/fi/helsinki/cs/tmc/cli/command/admin/AdminCommand.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,26 +41,26 @@ public class AdminCommand extends AbstractCommand {
4141

4242
private static final Logger logger = LoggerFactory.getLogger(AdminCommand.class);
4343
private static final String HELP_TEXT =
44-
"Usage: tmc admin <COMMAND> [<command-arguments>] \n\n"
44+
"Usage: tmc admin <COMMAND> [<COMMAND-ARGUMENTS>]\n\n"
4545
+ "Commands:\n"
46-
+ "checkstyle --exercise=<PATH> --output=<PATH> --locale=<LOCALE>"
46+
+ "checkstyle --exercise=<PATH> --output=<PATH> --locale=<LOCALE>\n"
4747
+ " Run checkstyle or similar plugin to project if applicable.\n"
48-
+ "help"
48+
+ "help\n"
4949
+ " Display help information.\n"
50-
+ "prepare-solutions --exercise=<PATH> --output=<PATH>"
50+
+ "prepare-solutions --exercise=<PATH> --output=<PATH>\n"
5151
+ " Prepare a presentable solution from the original.\n"
52-
+ "prepare-stubs --exercise=<PATH> -- output=<PATH> --locale=<LOCALE>"
52+
+ "prepare-stubs --exercise=<PATH> -- output=<PATH> --locale=<LOCALE>\n"
5353
+ " Prepare a stub exercise from the original.\n"
54-
+ "run-tests --exercise=<PATH> --output=<PATH>"
54+
+ "run-tests --exercise=<PATH> --output=<PATH>\n"
5555
+ " Run the tests for the exercise.\n"
56-
+ "scan-exercise --exercise=<PATH> --output=<PATH>"
56+
+ "scan-exercise --exercise=<PATH> --output=<PATH>\n"
5757
+ " Produce an exercise description of an exercise directory.\n"
58-
+ "find-exercises --exercise=<PATH> --output=<PATH>"
58+
+ "find-exercises --exercise=<PATH> --output=<PATH>\n"
5959
+ " Produce list of found exercises.\n"
60-
+ "get-exercise-packaging-configuration --exercise=<PATH> --output=<PATH>"
60+
+ "get-exercise-packaging-configuration --exercise=<PATH> --output=<PATH>\n"
6161
+ " Returns configuration of under which folders student and nonstudent"
62-
+ " files are located."
63-
+ "clean --exercise=<PATH>"
62+
+ " files are located.\n"
63+
+ "clean --exercise=<PATH>\n"
6464
+ " Produce list of found exercises.";
6565
// + "prepare-submission --clonePath --submissionPath --output=PATH"
6666
// + " Prepares from submission and solution project for which the tests"

0 commit comments

Comments
 (0)