build: simplify unicode console output (#20017)
This commit is contained in:
parent
35ebbb5f6e
commit
7d4e0ad7b0
5 changed files with 15 additions and 13 deletions
|
@ -19,8 +19,8 @@ const bumpType = args._[0]
|
|||
const targetRepo = bumpType === 'nightly' ? 'nightlies' : 'electron'
|
||||
|
||||
require('colors')
|
||||
const pass = '\u2713'.green
|
||||
const fail = '\u2717'.red
|
||||
const pass = '✓'.green
|
||||
const fail = '✗'.red
|
||||
|
||||
if (!bumpType && !args.notesOnly) {
|
||||
console.log(`Usage: prepare-release [stable | beta | nightly]` +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue