Skip to content

Commit 4e1d754

Browse files
committed
Added trailing log line break spawnSync() omits, corrected string delimiters ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions/tree/main/perplexity-omnibox]
1 parent a65ad56 commit 4e1d754

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/bump/extension-manifests.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,11 @@
8282
try {
8383
execSync('git add ./**/manifest.json')
8484
spawnSync('git', ['commit', '-n', '-m', commitMsg], { stdio: 'inherit', encoding: 'utf-8' })
85+
console.log('') // line break
8586
if (!config.noPush) {
8687
bump.log.working('\nPulling latest changes from remote to sync local repository...\n')
8788
execSync('git pull')
88-
bump.log.working('\nPushing bump${pluralSuffix} to Git...\n')
89+
bump.log.working(`\nPushing bump${pluralSuffix} to Git...\n`)
8990
execSync('git push')
9091
}
9192
bump.log.success(`Success! ${Object.keys(bumpedManifests).length} manifest${pluralSuffix} updated${

0 commit comments

Comments
 (0)