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.
gitAction
1 parent f0949a5 commit f73f462Copy full SHA for f73f462
utils/bump/extension-manifests.js
@@ -86,9 +86,8 @@
86
bump.log.working('\nPushing bump${pluralSuffix} to Git...\n')
87
execSync('git push')
88
}
89
- const gitAction = `updated${ !noCommit ? '/committed' : '' }${ !noPush ? '/pushed' : '' }`
90
- bump.log.success(
91
- `Success! ${Object.keys(bumpedManifests).length} manifest${pluralSuffix} ${gitAction} to GitHub`)
+ bump.log.success(`Success! ${Object.keys(bumpedManifests).length} manifest${pluralSuffix} updated${
+ !noCommit ? '/committed' : '' }${ !noPush ? '/pushed' : '' } to GitHub`)
92
} catch (err) { bump.log.error('Git operation failed: ' + err.message) }
93
94
0 commit comments