hack/util: fix mixed tab/spaces for indentation

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-08-30 12:59:03 +02:00
parent a746959fc1
commit aa8ab9fcca
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 6 additions and 6 deletions

View File

@ -22,11 +22,11 @@ else
fi fi
if [ -z "$CLI_PLATFORM" ]; then if [ -z "$CLI_PLATFORM" ]; then
rawos=$(uname -s) rawos=$(uname -s)
if [ "$rawos" = "Darwin" ]; then if [ "$rawos" = "Darwin" ]; then
CLI_PLATFORM="darwin/amd64" CLI_PLATFORM="darwin/amd64"
elif uname -s | grep MINGW > /dev/null 2>&1 ; then elif uname -s | grep MINGW > /dev/null 2>&1 ; then
CLI_PLATFORM="windows/amd64" CLI_PLATFORM="windows/amd64"
fi fi
fi fi