soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame contribute delete
267 Bytes
#!/usr/bin/env node
const electron = require('electron')
const spawn = require('cross-spawn')
const argv = process.argv.slice(2)
const result = spawn.sync(
electron,
[require.resolve('./app')].concat(argv),
{ stdio: 'ignore' },
)
process.exit(result.status)