From 19c250de209a3a958a88d7dfdc2b8798ae4f044f Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Mon, 26 Dec 2016 01:00:57 +0100 Subject: [PATCH] fix proto-gen.sh for macos --- tools/release/proto-gen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release/proto-gen.sh b/tools/release/proto-gen.sh index 4349d24dd..9f9ff3241 100755 --- a/tools/release/proto-gen.sh +++ b/tools/release/proto-gen.sh @@ -10,7 +10,7 @@ function detect_protoc() { if [[ "$OSTYPE" == "linux"* ]]; then echo $GOPATH/src/v2ray.com/core/.dev/protoc/linux/protoc 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 }