mirror of
https://github.com/lammertb/libhttp.git
synced 2025-12-22 04:02:04 +03:00
16 lines
245 B
Bash
Executable File
16 lines
245 B
Bash
Executable File
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
|