mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-22 01:37:34 +01:00
adjust output for if|install for --frame-path
This commit is contained in:
parent
722369fbd7
commit
ccb76e1abb
@ -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()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user