mirror of
https://github.com/electron/electron.git
synced 2026-01-31 10:18:13 -05:00
8 lines
153 B
JavaScript
Executable File
8 lines
153 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
var electron = require('./')
|
|
|
|
var proc = require('child_process')
|
|
|
|
proc.spawn(electron, process.argv.slice(2), {stdio: 'inherit'});
|