moonscript/.travis/platform.sh
leaf corcoran b129b00daf update to travis build scripts from https://github.com/moteus/lua-travis-example
no sudo

oops forgot to install lua

busted stable?

we will get there..

use stable loadkit
2015-12-06 18:09:03 -08:00

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