vd-tool
Version:
Android Studio Vector Drawable tool
16 lines (14 loc) • 342 B
JavaScript
const { platform } = process
if (platform != 'win32') {
const execa = require('execa')
const path = require('path')
const { stderr, stdout } = process
const shell = true
const binPath = path.join(__dirname, 'bin', 'vd-tool')
execa.commandSync(`chmod +x ${binPath}`, {
shell,
stdout,
stderr
})
}