From 01ebfa760fbed460dcaab428880767be2c05a53e Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Fri, 25 Oct 2019 18:51:38 +0900 Subject: [PATCH] Add `identify` protobufs to makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index da54ffc..1d38638 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ -FILES_TO_LINT = libp2p tests tests_interop examples setup.py -PB = libp2p/crypto/pb/crypto.proto libp2p/pubsub/pb/rpc.proto libp2p/security/insecure/pb/plaintext.proto libp2p/security/secio/pb/spipe.proto +FILES_TO_LINT = libp2p tests examples setup.py +PB = libp2p/crypto/pb/crypto.proto \ + libp2p/pubsub/pb/rpc.proto \ + libp2p/security/insecure/pb/plaintext.proto \ + libp2p/security/secio/pb/spipe.proto \ + libp2p/identity/identify/pb/identify.proto PY = $(PB:.proto=_pb2.py) PYI = $(PB:.proto=_pb2.pyi)