Very minor change to how the ScriptLauncher formats its usage notes, based on this email to dspace-tech: http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg11700.html It seems logical that the old format could be slightly confusing, and this is a rather easy fix. So, I've changed it to format like this:

* checker : Run the checksum checker
  * checker-emailer : Send emails related to the checksum checker



git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5282 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Tim Donohue
2010-08-18 19:11:55 +00:00
parent ac5df9144d
commit a6f466a153

View File

@@ -278,8 +278,8 @@ public class ScriptLauncher
System.out.println("Usage: dspace [command-name] {parameters}"); System.out.println("Usage: dspace [command-name] {parameters}");
for (Element command : commands) for (Element command : commands)
{ {
System.out.println(" - " + command.getChild("name").getValue() + System.out.println(" * " + command.getChild("name").getValue() +
": " + command.getChild("description").getValue()); " : " + command.getChild("description").getValue());
} }
} }
} }