Add a prebuild script for Constructicon

Constructicon will run this just before building the project, so this is
our chance to install the node modules we need and create the
.xcodeproj.
This commit is contained in:
Adam Roben
2013-03-04 15:13:00 -05:00
committed by probablycorey
parent 91347f14f2
commit 5f2bd9edd7

8
script/constructicon/prebuild Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
cd "$(dirname "$0")/../.."
npm install
rake create-xcode-project