summaryrefslogtreecommitdiffstats
path: root/tests/config/tapered/.travis/platform.sh
blob: 7259a7d6369d60003931c37f6c184e4b7b5d97cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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