File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -35,24 +35,24 @@ test: typecheck unittest
35
35
.proto :
36
36
mkdir -p $@
37
37
38
- .proto/dispatch-sdk : .proto
39
- buf export buf.build/stealthrocket/dispatch-sdk --output=.proto/dispatch-sdk
38
+ .proto/dispatch-proto : .proto
39
+ buf export buf.build/stealthrocket/dispatch-proto --output=.proto/dispatch-proto
40
40
41
41
update-proto :
42
42
$(MAKE ) clean
43
43
find . -type f -name ' *_pb2*.py*' -exec rm {} \;
44
44
$(MAKE ) generate
45
45
46
- generate : .proto/dispatch-sdk
46
+ generate : .proto/dispatch-proto
47
47
buf generate --template buf.gen.yaml
48
48
cd src && find . -type d | while IFS= read -r dir; do touch $$ dir/__init__.py; done
49
49
rm src/__init__.py
50
50
$(MAKE ) fmt
51
51
52
52
clean :
53
- $(RM ) -rf dist .proto .coverage .coverage-html
54
- find . -type f -name ' *.pyc' -exec rm {} \;
55
- find . -type d -name ' __pycache__' -exec rm -rf {} \;
53
+ $(RM ) -r dist .proto .coverage .coverage-html
54
+ find . -type f -name ' *.pyc' | xargs $( RM ) -r
55
+ find . -type d -name ' __pycache__' | xargs $( RM ) -r
56
56
57
57
build :
58
58
$(PYTHON ) -m build
Original file line number Diff line number Diff line change 1
1
<p align =" center " >
2
- <img src =" https://github.com/stealthrocket/dispatch-sdk-protobuf /assets/865510/87162355-e184-4058-a733-650eee53f333 " width =" 160 " />
2
+ <img src =" https://github.com/stealthrocket/dispatch-proto /assets/865510/87162355-e184-4058-a733-650eee53f333 " width =" 160 " />
3
3
</p >
4
4
5
5
# Dispatch SDK for Python
Original file line number Diff line number Diff line change 1
1
version : v1
2
2
directories :
3
- - .proto/dispatch-sdk
3
+ - .proto/dispatch-proto
You can’t perform that action at this time.
0 commit comments