Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cstaykov authored Dec 15, 2022
1 parent 9ef8e29 commit 2839613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/lib/cmd/cherry_pick.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ exports.executeableSubcommand = co.wrap(function *(args) {
}

if (args.no_commit) {
const commitish = `HEAD~${commits.length}`
const commitish = `HEAD~${commits.length}`;
const annotated = yield GitUtil.resolveCommitish(repo, commitish);
const commit = yield repo.getCommit(annotated.id());
yield Reset.reset(repo, commit, Reset.TYPE.SOFT);
Expand Down

0 comments on commit 2839613

Please sign in to comment.