11 lines
237 B
Bash
11 lines
237 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
pushd $(dirname $0)
|
||
|
BASE=`pwd -P`
|
||
|
popd
|
||
|
|
||
|
BUILDPRODUCTS="$BASE"/build/Build/Products/Release
|
||
|
|
||
|
xcodebuild -workspace "$BASE"/../Cog.xcodeproj/project.xcworkspace -scheme Cog -configuration Release -derivedDataPath "$BASE"/build
|
||
|
|