We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df79518 + b0b0960 commit 007419fCopy full SHA for 007419f
Makefile
@@ -72,3 +72,16 @@ proto:
72
protoc --proto_path "$(PWD)/../googleapis:$(PWD)/../lightstep-tracer-common/" \
73
--python_out="$(PWD)/lightstep" \
74
collector.proto
75
+
76
+thrift:
77
+ docker run -v "$(PWD)/lightstep:/out" -v "$(MONO_REPO)/go/src/github.com/lightstep/common-go:/data" --rm thrift:0.11.0 \
78
+ thrift -r --gen py -out /out /data/crouton.thrift
79
+ python-modernize -w $(PWD)/lightstep/crouton/
80
+ rm -rf lightstep/crouton/ReportingService-remote
81
82
+clean:
83
+ find . -name '__pycache__' -exec rm -R {} +
84
+ find . -name '*.pyc' -exec rm {} +
85
+ rm -Rf ./*.egg-info
86
+ rm -Rf ./dist/
87
+ rm -Rf ./build/
0 commit comments