@robertoartiles/vd-tool
Version:
Android Studio Vector Drawable tool
18 lines (16 loc) • 407 B
JavaScript
const { platform } = process;
(async () => {
if (platform !== 'win32') {
const execa = await import('execa')
const path = await import('path')
const { stderr, stdout } = process
const shell = true
const binPath = path.join(__dirname, 'bin', 'vd-tool')
execa.execaCommandSync(`chmod +x ${binPath}`, {
shell,
stdout,
stderr
})
}
})()