mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
Made Bash export script work on Windows (cygwin) and macOS
This commit is contained in:
parent
1ef1afc890
commit
9aad7da2ca
@ -1,6 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
SPINE_EXE="C:\Program Files (x86)\Spine\Spine.com"
|
||||||
|
PLATFORM=`uname`
|
||||||
|
echo $PLATFORM
|
||||||
|
if [[ $PLATFORM == "Darwin" ]]; then
|
||||||
|
SPINE_EXE="/Applications/Spine/Spine.app/Contents/MacOS/Spine"
|
||||||
|
fi
|
||||||
|
echo "Spine exe: $SPINE_EXE"
|
||||||
|
|
||||||
echo "Cleaning..."
|
echo "Cleaning..."
|
||||||
rm -rf ../alien/export/*
|
rm -rf ../alien/export/*
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user