mirror of
https://github.com/libretro/libretro-super
synced 2025-03-13 10:14:19 +00:00
quit early if we can't find the RetroArch repo
This commit is contained in:
parent
4b8b14daee
commit
41c790a3be
@ -7,6 +7,12 @@ ROOT_DIR=$CORES_DIR/libretro-super
|
|||||||
RARCH_DIR=$CORES_DIR/RetroArch
|
RARCH_DIR=$CORES_DIR/RetroArch
|
||||||
RARCH_DIST_DIR=$RARCH_DIR/ios/modules
|
RARCH_DIST_DIR=$RARCH_DIR/ios/modules
|
||||||
|
|
||||||
|
if [ ! -d "$RARCH_DIST_DIR" ]
|
||||||
|
then
|
||||||
|
echo "Can't find the RetroArch directory, quitting..."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/
|
export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/
|
||||||
|
|
||||||
if ! $SKIPFETCH ; then
|
if ! $SKIPFETCH ; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user