Run prettier, to pass format-check

This commit is contained in:
Dave Olsthoorn 2020-08-11 19:20:52 +02:00 committed by Dave Olsthoorn
parent f4de3ae372
commit 469d66c201
3 changed files with 32 additions and 37 deletions

View file

@ -25,12 +25,7 @@ export async function install(): Promise<void> {
fs.mkdirSync(ANDROID_REPOSITORIES_DIR, {recursive: true})
fs.closeSync(fs.openSync(ANDROID_REPOSITORIES_CFG, 'w'))
const acceptBuffer = Buffer.from(
Array(10)
.fill('y')
.join('\n'),
'utf8'
)
const acceptBuffer = Buffer.from(Array(10).fill('y').join('\n'), 'utf8')
let sdkManager = ''
if (process.platform === 'linux') {