mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +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
|
||||
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..."
|
||||
rm -rf ../alien/export/*
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user