mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +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")
|
||||
.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")
|
||||
.withDescription("Use if there was an error and some resources were dropped, e.g.\n"
|
||||
+ " \"Invalid config flags detected. Dropping resources\", but you\n"
|
||||
@ -382,7 +388,7 @@ public class Main {
|
||||
|
||||
// add basic framework options
|
||||
frameOptions.addOption(tagOption);
|
||||
frameOptions.addOption(frameDirOption);
|
||||
frameOptions.addOption(frameIfDirOption);
|
||||
|
||||
// add all, loop existing cats then manually add advance
|
||||
for (Object op : normalOptions.getOptions()) {
|
||||
|
Loading…
Reference in New Issue
Block a user