We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b13d9 commit 63f5447Copy full SHA for 63f5447
Taskfile.yml
@@ -4,7 +4,7 @@ tasks:
4
protoc:
5
desc: Compile protobuf definitions
6
cmds:
7
- - protoc --proto_path=rpc --go_out=plugins=grpc,paths=source_relative:rpc ./rpc/commands/*.proto
+ - '{{ default "protoc" .PROTOC_BINARY }} --proto_path=rpc --go_out=plugins=grpc,paths=source_relative:rpc ./rpc/commands/*.proto'
8
9
build:
10
desc: Build the project
appveyor.yml
@@ -10,6 +10,7 @@ skip_branch_with_pr: true
environment:
11
GOPATH: c:\gopath
12
PROTOC_PATH: c:\protoc
13
+ PROTOC_BINARY: protoc.exe
14
# add protoc, gopath and override default Python 2.7
15
PATH: $(PROTOC_PATH)\bin;$(GOPATH)\bin;C:\Python37;C:\Python37\Scripts;$(PATH)
16
0 commit comments