mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04: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'});
|