adjust output for if|install for --frame-path

This commit is contained in:
Connor Tumbleson 2013-05-02 07:08:14 -05:00
parent 722369fbd7
commit ccb76e1abb

View File

@ -307,6 +307,12 @@ public class Main {
.withArgName("dir") .withArgName("dir")
.create("p"); .create("p");
Option frameIfDirOption = OptionBuilder.withLongOpt("frame-path")
.withDescription("Stores framework files into <dir>.")
.hasArg(true)
.withArgName("dir")
.create("p");
Option keepResOption = OptionBuilder.withLongOpt("keep-broken-res") Option keepResOption = OptionBuilder.withLongOpt("keep-broken-res")
.withDescription("Use if there was an error and some resources were dropped, e.g.\n" .withDescription("Use if there was an error and some resources were dropped, e.g.\n"
+ " \"Invalid config flags detected. Dropping resources\", but you\n" + " \"Invalid config flags detected. Dropping resources\", but you\n"
@ -382,7 +388,7 @@ public class Main {
// add basic framework options // add basic framework options
frameOptions.addOption(tagOption); frameOptions.addOption(tagOption);
frameOptions.addOption(frameDirOption); frameOptions.addOption(frameIfDirOption);
// add all, loop existing cats then manually add advance // add all, loop existing cats then manually add advance
for (Object op : normalOptions.getOptions()) { for (Object op : normalOptions.getOptions()) {