Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct wording in CLI usage messages #3579

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions brut.apktool/apktool-cli/src/main/java/brut/apktool/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ private static void _options() {

Option analysisOption = Option.builder("m")
.longOpt("match-original")
.desc("Keep files to closest to original as possible (prevents rebuild).")
.desc("Keep files closest to original as possible (prevents rebuild).")
.build();

Option apiLevelOption = Option.builder("api")
Expand Down Expand Up @@ -492,7 +492,7 @@ private static void _options() {
.longOpt("output")
.desc("The name of apk that gets written. (default: dist/name.apk)")
.hasArg(true)
.argName("dir")
.argName("file")
.build();

Option outputDecOption = Option.builder("o")
Expand Down
Loading