mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2024-11-29 16:49:24 +00:00
24 lines
363 B
Bash
Executable File
24 lines
363 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -z "$GSPLUS" ] && [ -x "$GSPLUS" ]
|
|
then
|
|
EMULATORPATH="$GSPLUS"
|
|
elif [ ! -z "$GSPORT" ] && [ -x "$GSPORT" ]
|
|
then
|
|
EMULATORPATH="$GSPORT"
|
|
fi
|
|
|
|
if [ -z "$EMULATORPATH" ]
|
|
then
|
|
echo Unable to find GSplus or GSport at these locations.
|
|
echo " GSPLUS=$GSPLUS"
|
|
echo " GSPORT=$GSPORT"
|
|
exit 1
|
|
fi
|
|
|
|
cd make
|
|
|
|
$EMULATORPATH
|
|
|
|
exit 0
|