cherrypick-interactive 1.14.6 → 1.14.7

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.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -1578,7 +1578,7 @@ async function main() {
1578
1578
 
1579
1579
  log(chalk.green(`✓ package.json updated and committed: ${msg}`));
1580
1580
 
1581
- await git.push(['-u', 'origin', releaseBranch, '--no-verify']);
1581
+ await gitRaw(['push', '-u', 'origin', releaseBranch, '--no-verify']);
1582
1582
 
1583
1583
  const ghArgs = [
1584
1584
  'pr',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cherrypick-interactive",
3
- "version": "1.14.6",
3
+ "version": "1.14.7",
4
4
  "description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
5
5
  "main": "cli.js",
6
6
  "bin": "cli.js",