You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
* add privateKey support for release-cordova
* Remove redundant warnings
* Fix possible inclusion of signature to update when it shouldn't be
* Add warning in case of cli couldn't delete redundate signature file
* Extract deletion of previous signature into method
* Minor refactor
.option("description",{alias: "des",default: null,demand: false,description: "Description of the changes made to the app in this release",type: "string"})
399
399
.option("disabled",{alias: "x",default: false,demand: false,description: "Specifies whether this release should be immediately downloadable",type: "boolean"})
400
400
.option("mandatory",{alias: "m",default: false,demand: false,description: "Specifies whether this release should be considered mandatory",type: "boolean"})
401
-
.option("privateKeyPath",{alias: "k",default: false,demand: false,description: "Specifies the location of a RSA private key to sign the release with. "+chalk.yellow("NOTICE:")+" use it for react native applications only, client SDK on other platforms will be ignoring signature verification for now!",type: "string"})
401
+
.option("privateKeyPath",{alias: "k",default: false,demand: false,description: "Specifies the location of a RSA private key to sign the release with",type: "string"})
402
402
.option("noDuplicateReleaseError",{default: false,demand: false,description: "When this flag is set, releasing a package that is identical to the latest release will produce a warning instead of an error",type: "boolean"})
403
403
.option("rollout",{alias: "r",default: "100%",demand: false,description: "Percentage of users this release should be available to",type: "string"})
.option("description",{alias: "des",default: null,demand: false,description: "Description of the changes made to the app in this release",type: "string"})
417
417
.option("disabled",{alias: "x",default: false,demand: false,description: "Specifies whether this release should be immediately downloadable",type: "boolean"})
418
418
.option("mandatory",{alias: "m",default: false,demand: false,description: "Specifies whether this release should be considered mandatory",type: "boolean"})
419
+
.option("privateKeyPath",{alias: "k",default: false,demand: false,description: "Specifies the location of a RSA private key to sign the release with",type: "string"})
419
420
.option("noDuplicateReleaseError",{default: false,demand: false,description: "When this flag is set, releasing a package that is identical to the latest release will produce a warning instead of an error",type: "boolean"})
420
421
.option("rollout",{alias: "r",default: "100%",demand: false,description: "Percentage of users this release should be immediately available to",type: "string"})
421
422
.option("targetBinaryVersion",{alias: "t",default: null,demand: false,description: "Semver expression that specifies the binary app version(s) this release is targeting (e.g. 1.1.0, ~1.2.3). If omitted, the release will target the exact version specified in the config.xml file.",type: "string"})
@@ -831,6 +832,7 @@ function createCommand(): cli.ICommand {
0 commit comments