Skip to content

Commit

Permalink
fix: spawnSync args param error
Browse files Browse the repository at this point in the history
bdo committed Feb 4, 2021
1 parent a6f3e57 commit a099dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/amend.js
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ export default () => {

const { coAuthors } = pairingConfig
const trailers = coAuthoringTrailers(coAuthors)
const rawCommitMessage = stripCoAuthorship(run('git', 'log', '-1', '--pretty=%B'))
const rawCommitMessage = stripCoAuthorship(run('git', ['log', '-1', '--pretty=%B']))

log(bold('Rewriting last commit with the following info:'))
log(trailers)

0 comments on commit a099dff

Please sign in to comment.