Skip to content

Commit

Permalink
fix: return str from git commit execSync
Browse files Browse the repository at this point in the history
  • Loading branch information
rkulinski committed Nov 24, 2023
1 parent 3d6e7bb commit cd0a957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ async function run() {

console.info(`Committing changes...`)
execSync('git add -A ')
execSync(`git commit -m "${releaseCommitMsg(version)}"`)
execSync(`git commit --verbose -m "${releaseCommitMsg(version)}"`, { encoding: 'utf8' })

console.info()
console.info(` Committed Changes.`)
Expand Down

0 comments on commit cd0a957

Please sign in to comment.