Skip to content

Commit

Permalink
Clarify path to client.properties must be absolute.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Morgan committed Dec 15, 2009
1 parent 202a704 commit c59a3b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/hyperic/hq/hqapi1/tools/Command.java
Expand Up @@ -99,8 +99,8 @@ static OptionParser getOptionParser() {
"not specified, stdin will be used.").
withRequiredArg().ofType(String.class);

parser.accepts(OPT_PROPERTIES, "Specify the file to read for connection " +
"properties. Defaults to ~/.hq/client.properties")
parser.accepts(OPT_PROPERTIES, "File to read for connection properties. " +
"Path must be absolute and defaults to ~/.hq/client.properties")
.withRequiredArg().ofType(String.class);

return parser;
Expand Down

0 comments on commit c59a3b5

Please sign in to comment.