Files
cpp-project-template/third_party/prometheus/3rdparty/civetweb/ci/travis/platform.sh

16 lines
245 B
Bash
Raw Normal View History

2025-08-22 18:22:57 +08:00
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