Skip to content

Commit

Permalink
Fixing filestoskip option after merge
Browse files Browse the repository at this point in the history
Signed-off-by: Vacha Shah <[email protected]>
  • Loading branch information
VachaShah committed Oct 27, 2022
1 parent a1d89dc commit b3df18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const backportOnce = async ({
await git("switch", base);
await git("switch", "--create", head);
try {
await git("cherry-pick", "-x", commitSha);
await git("cherry-pick", "-x", "-n", commitSha);
for (const file of filesToSkip) {
await git("checkout", "HEAD", file);
}
Expand Down

0 comments on commit b3df18d

Please sign in to comment.