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.
--no-<commit|push>
1 parent ae85e04 commit 16c24eaCopy full SHA for 16c24ea
utils/bump/extension-manifests.js
@@ -27,8 +27,8 @@
27
const args = process.argv.slice(2),
28
chromiumOnly = args.some(arg => /chrom/i.test(arg)),
29
ffOnly = args.some(arg => /f{2}/i.test(arg)),
30
- noCommit = args.includes('--no-commit'),
31
- noPush = args.includes('--no-push')
+ noCommit = args.some(arg => ['--no-commit', '-nc'].includes(arg)),
+ noPush = args.some(arg => ['--no-push', '-np'].includes(arg))
32
33
// Init manifest PATHS
34
const manifestPaths = ['chromium/extension/manifest.json']
0 commit comments