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

@ -6,8 +6,8 @@ const ELECTRON_DIR = path.resolve(__dirname, '..', '..')
const SRC_DIR = path.resolve(ELECTRON_DIR, '..')
require('colors')
const pass = '\u2713'.green
const fail = '\u2717'.red
const pass = ''.green
const fail = ''.red
function getElectronExec () {
const OUT_DIR = getOutDir()