We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34098b7 commit 588f3f1Copy full SHA for 588f3f1
cli/script/command-executor.ts
@@ -736,7 +736,7 @@ function promote(command: cli.IPromoteCommand): Promise<void> {
736
}
737
738
function release(command: cli.IReleaseCommand): Promise<void> {
739
- if (command.package.search(/\.zip$/) !== -1) {
+ if (command.package.search(/\.zip$/i) !== -1) {
740
throw new Error("It is unnecessary to package releases in a .zip file. Please specify the path of the desired directory or file directly.");
741
} else if (semver.valid(command.appStoreVersion) === null) {
742
throw new Error("Please use a semver compliant app store version, for example \"1.0.3\".");
0 commit comments