docs: Use correct option keys in command examples [skip ci]

This commit is contained in:
oSumAtrIX 2024-09-21 23:08:32 +02:00 committed by GitHub
parent 9440dc769e
commit a7af611ef0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@ java -jar revanced-cli.jar patch -p patches.rvp input.apk
You can also use multiple RVP files:
```bash
java -jar revanced-cli.jar patch -p patches.rvp -b another-patches.rvp input.apk
java -jar revanced-cli.jar patch -p patches.rvp -p another-patches.rvp input.apk
```
To change the default set of enabled or disabled patches, use the option `-e` or `-d` to enable or disable specific patches.
@ -51,7 +51,7 @@ java -jar revanced-cli.jar list-patches patches.rvp
Then you can use the indices to enable or disable patches:
```bash
java -jar revanced-cli.jar patch -b patches.rvp --ei 123 --di 456 input.apk
java -jar revanced-cli.jar patch -p patches.rvp --ei 123 --di 456 input.apk
```
You can combine the option `-e`, `-d`, `--ei`, `--di` and `--exclusive`. Here is an example: