Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
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
5 changes: 3 additions & 2 deletions cli/script/command-executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ function patch(command: cli.IPatchCommand): Promise<void> {

return sdk.patchRelease(command.appName, command.deploymentName, command.label, packageInfo)
.then((): void => {
log(`Successfully updated the "${ command.label ? command.label : `latest` }" release of "${command.appName}" app's "${command.deploymentName}" deployment.`);
log(`Successfully updated the "${command.label ? command.label : `latest`}" release of "${command.appName}" app's "${command.deploymentName}" deployment.`);
});
}

Expand Down Expand Up @@ -995,8 +995,9 @@ export var releaseCordova = (command: cli.IReleaseCordovaCommand): Promise<void>
throw new Error("Platform must be either \"ios\" or \"android\".");
}

log(chalk.cyan("Running \"cordova prepare\" command:\n"));
try {
var prepareProcess: any = spawnSync("cordova", ["prepare", platform]);
var prepareProcess: any = spawnSync("cordova", ["prepare", platform, "--verbose"], { stdio: [0, 1, 2] /* Inherit all io streams */ });
if (prepareProcess.error) {
throw prepareProcess.error;
}
Expand Down