mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
b129b00daf
no sudo oops forgot to install lua busted stable? we will get there.. use stable loadkit
16 lines
249 B
Bash
16 lines
249 B
Bash
if [ -z "${PLATFORM:-}" ]; then
|
|
PLATFORM=$TRAVIS_OS_NAME;
|
|
fi
|
|
|
|
if [ "$PLATFORM" == "osx" ]; then
|
|
PLATFORM="macosx";
|
|
fi
|
|
|
|
if [ -z "$PLATFORM" ]; then
|
|
if [ "$(uname)" == "Linux" ]; then
|
|
PLATFORM="linux";
|
|
else
|
|
PLATFORM="macosx";
|
|
fi;
|
|
fi
|