internal: vet.sh quits when it sees macosx (#2048)
This commit is contained in:
Родитель
9b03f4f00b
Коммит
e9443916b5
5
vet.sh
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.
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче