mirror of
https://github.com/electron/electron.git
synced 2026-01-10 16:08:06 -05:00
This is required by the child_process.fork, which is indeed executing the node binary to start a script. The node fork can be found at: https://github.com/atom/cefode-node/tree/chromium-v8
13 lines
187 B
Bash
Executable File
13 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./script/update-node v0.10.5
|
|
|
|
gyp --depth . atom.gyp \
|
|
-Ivendor/brightray/brightray.gypi \
|
|
-Dtarget_arch=ia32 \
|
|
-Dlibrary=static_library
|