1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00

fix proto-gen.sh for macos

This commit is contained in:
Darien Raymond 2016-12-26 01:00:57 +01:00
parent 0a9ba3db5c
commit 19c250de20
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -10,7 +10,7 @@ function detect_protoc() {
if [[ "$OSTYPE" == "linux"* ]]; then if [[ "$OSTYPE" == "linux"* ]]; then
echo $GOPATH/src/v2ray.com/core/.dev/protoc/linux/protoc echo $GOPATH/src/v2ray.com/core/.dev/protoc/linux/protoc
elif [[ "$OSTYPE" == "darwin"* ]]; then elif [[ "$OSTYPE" == "darwin"* ]]; then
echo $GOPATH/src/v2ray.com/core/.dev/protoc/linux/protoc echo $GOPATH/src/v2ray.com/core/.dev/protoc/macos/protoc
fi fi
} }