From 55f7662e38c58a6307d037be67bf8d7831155e52 Mon Sep 17 00:00:00 2001 From: Trofimov Denis Vladimirovich Date: Wed, 27 Mar 2019 22:33:43 +0300 Subject: [PATCH 1/2] Fix ./third_party/protoc-gen.sh: command not found #3 --- third_party/protoc-gen.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 third_party/protoc-gen.sh diff --git a/third_party/protoc-gen.sh b/third_party/protoc-gen.sh new file mode 100644 index 0000000..d7e4a2c --- /dev/null +++ b/third_party/protoc-gen.sh @@ -0,0 +1 @@ +protoc --proto_path=api/proto/v1 --proto_path=third_party --go_out=plugins=grpc:pkg/api/v1 todo-service.proto From a9a8dbe15df4051f05d5e4304257687244b8c352 Mon Sep 17 00:00:00 2001 From: Trofimov Denis Vladimirovich Date: Wed, 27 Mar 2019 22:38:23 +0300 Subject: [PATCH 2/2] Skip in-tree build products --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 17c7cc4..6eb17b0 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,7 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out -/.vscode/launch.json \ No newline at end of file +/.vscode/launch.json + +# in-tree build products +*.pb.go