internal: vet.sh quits when it sees macosx (#2048)

This commit is contained in:
Jean de Klerk 2018-05-02 16:47:25 -07:00 коммит произвёл GitHub
Родитель 9b03f4f00b
Коммит e9443916b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

5
vet.sh
Просмотреть файл

@ -1,5 +1,10 @@
#!/bin/bash
if [[ `uname -a` = *"Darwin"* ]]; then
echo "It seems you are running on Mac. This script does not work on Mac. See https://github.com/grpc/grpc-go/issues/2047"
exit 1
fi
set -ex # Exit on error; debugging enabled.
set -o pipefail # Fail a pipe if any sub-command fails.