We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1684c commit 69f66aeCopy full SHA for 69f66ae
scripts/publish.ts
@@ -583,8 +583,13 @@ async function run() {
583
console.info(` Github release created.`)
584
585
console.info(`Committing changes...`)
586
- execSync("git add -A ")
587
- execSync(`git commit -m "${releaseCommitMsg(version)}"`)
+ execSync('git add -A ')
+ try {
588
+ execSync(`git commit -m "${releaseCommitMsg(version)}"`)
589
+ } catch (e) {
590
+ console.error(e)
591
+ }
592
+
593
console.info()
594
console.info(` Committed Changes.`)
595
console.info(`Pushing changes...`)
0 commit comments