build: simplify unicode console output (#20017)

This commit is contained in:
Shelley Vohr 2019-08-29 07:46:54 -07:00 committed by John Kleinschmidt
parent 35ebbb5f6e
commit 7d4e0ad7b0
5 changed files with 15 additions and 13 deletions

View file

@ -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]` +