From a6f466a1533a40830ca4941c20d69d3cf84fa301 Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Wed, 18 Aug 2010 19:11:55 +0000 Subject: [PATCH] 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 --- .../src/main/java/org/dspace/app/launcher/ScriptLauncher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dspace-api/src/main/java/org/dspace/app/launcher/ScriptLauncher.java b/dspace-api/src/main/java/org/dspace/app/launcher/ScriptLauncher.java index 910c2b1564..93289e2bd1 100644 --- a/dspace-api/src/main/java/org/dspace/app/launcher/ScriptLauncher.java +++ b/dspace-api/src/main/java/org/dspace/app/launcher/ScriptLauncher.java @@ -278,8 +278,8 @@ public class ScriptLauncher System.out.println("Usage: dspace [command-name] {parameters}"); for (Element command : commands) { - System.out.println(" - " + command.getChild("name").getValue() + - ": " + command.getChild("description").getValue()); + System.out.println(" * " + command.getChild("name").getValue() + + " : " + command.getChild("description").getValue()); } } }