14 lines
257 B
Bash
Executable file
14 lines
257 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./script/update-frameworks.py
|
|
./script/update-node.py --version v0.10.9
|
|
|
|
gyp -f ninja --depth . atom.gyp \
|
|
-Icommon.gypi \
|
|
-Ivendor/brightray/brightray.gypi \
|
|
-Dtarget_arch=ia32 \
|
|
-Dlibrary=static_library
|