cherrypick-interactive 1.14.7 → 1.14.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -1689,7 +1689,7 @@ async function ensureReleaseBranchFresh(branchName, startPoint) {
|
|
|
1689
1689
|
|
|
1690
1690
|
if (remoteExists) {
|
|
1691
1691
|
try {
|
|
1692
|
-
await gitRaw(['push', 'origin', '--delete', branchName]);
|
|
1692
|
+
await gitRaw(['push', 'origin', '--delete', branchName, '--no-verify']);
|
|
1693
1693
|
log(chalk.yellow(`↷ Deleted existing remote branch origin/${branchName}`));
|
|
1694
1694
|
} catch (e) {
|
|
1695
1695
|
err(chalk.red(`Failed to delete remote branch origin/${branchName}: ${e.message || e}`));
|
package/package.json
CHANGED