summaryrefslogtreecommitdiff
path: root/scripts/ostype.sh
blob: f3f16a45b700d7dd9903929ba1813d43adb51002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

UNAME=$(uname)

if [ "${UNAME}" = "Darwin" ]; then
    echo "darwin"
elif [ "${UNAME}" = "Linux" ]; then
    echo "linux"
elif [[ "${UNAME}" == *"MINGW"* ]] || [[ ${UNAME} == *"MSYS_NT"* ]]; then
    echo "windows"
else
    echo "unsupported"
    exit 1
fi