diff --git a/topics/basics/plugin_signing.md b/topics/basics/plugin_signing.md index c5b19a988..796a3fb03 100644 --- a/topics/basics/plugin_signing.md +++ b/topics/basics/plugin_signing.md @@ -193,14 +193,14 @@ In the Run/Debug Configuration for `publishPlugin` Gradle tas CLI tool is required if you don't rely on the Gradle IntelliJ Plugin – i.e. when working with Themes. To get the latest Marketplace ZIP Signer CLI Tool, visit the [JetBrains/marketplace-zip-signer](https://github.com/JetBrains/marketplace-zip-signer/releases) GitHub Releases page. -After downloading the zip-signer-cli.jar, execute it as below: +After downloading the marketplace-zip-signer-cli.jar, execute it as below: ```bash -java -jar zip-signer-cli.jar sign\ +java -jar marketplace-zip-signer-cli.jar sign\ -in "unsigned.zip"\ -out "signed.zip"\ - -cert "/path/to/chain.crt"\ - -key "/path/to/private.pem"\ + -cert-file "/path/to/chain.crt"\ + -key-file "/path/to/private.pem"\ -key-pass "PRIVATE_KEY_PASSWORD" ```