Skip to content

Commit

Permalink
fix: hide yarn output when not found
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Aug 29, 2018
1 parent 0c2aa20 commit a3897b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generators/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const rmf = isWindows ? 'rimraf' : 'rm -f'

let hasYarn = false
try {
execSync('yarn -v')
execSync('yarn -v', {stdio: 'ignore'})
hasYarn = true
} catch {}
// function stringToArray(s: string) {
Expand Down

0 comments on commit a3897b1

Please sign in to comment.