Skip to content

Commit b3d862f

Browse files
authored
ConnectPy is now moved to the connect org (#48)
1 parent 8753899 commit b3d862f

File tree

123 files changed

+746
-11431
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+746
-11431
lines changed

Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ GITVERSION := $(shell git describe --long --all)
44
BUILDDATE := $(shell date -Iseconds)
55
VERSION := $(or ${VERSION},$(shell git describe --tags --exact-match 2> /dev/null || git symbolic-ref -q --short HEAD || git rev-parse --short HEAD))
66
LOCALBIN ?= $(shell pwd)/bin
7-
PROTOC_GEN_CONNECPY ?= $(LOCALBIN)/protoc-gen-connecpy
8-
PROTOC_GEN_CONNECPY_VERSION ?= 2.3.0
97

108
all: proto generate test
119

1210
release: proto generate test
1311

1412
.PHONY: proto
15-
proto: protolint protoc-gen-connecpy
13+
proto: protolint
1614
$(MAKE) -C go clean
1715
$(MAKE) -C python clean
1816
$(MAKE) -C proto protoc
@@ -29,10 +27,3 @@ generate:
2927
.PHONY: test
3028
test:
3129
$(MAKE) -C go test
32-
33-
.PHONY: protoc-gen-connecpy
34-
protoc-gen-connecpy:
35-
mkdir -p $(LOCALBIN)
36-
rm -f $(LOCALBIN)/protoc-gen-connecpy
37-
curl -s -L https://github.com/i2y/connecpy/releases/download/v$(PROTOC_GEN_CONNECPY_VERSION)/protoc-gen-connecpy_$(PROTOC_GEN_CONNECPY_VERSION)_linux_amd64.tar.gz | tar -xzf - protoc-gen-connecpy
38-
mv protoc-gen-connecpy $(LOCALBIN)/protoc-gen-connecpy

0 commit comments

Comments
 (0)