Skip to content

Commit a5aeeb3

Browse files
Merge pull request #97 from stealthrocket/dispatch-proto
rename dispatch-sdk-protobuf to dispatch-proto
2 parents 005ecbf + 7c95e97 commit a5aeeb3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@ test: typecheck unittest
3535
.proto:
3636
mkdir -p $@
3737

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
4040

4141
update-proto:
4242
$(MAKE) clean
4343
find . -type f -name '*_pb2*.py*' -exec rm {} \;
4444
$(MAKE) generate
4545

46-
generate: .proto/dispatch-sdk
46+
generate: .proto/dispatch-proto
4747
buf generate --template buf.gen.yaml
4848
cd src && find . -type d | while IFS= read -r dir; do touch $$dir/__init__.py; done
4949
rm src/__init__.py
5050
$(MAKE) fmt
5151

5252
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
5656

5757
build:
5858
$(PYTHON) -m build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<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"/>
33
</p>
44

55
# Dispatch SDK for Python

buf.work.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version: v1
22
directories:
3-
- .proto/dispatch-sdk
3+
- .proto/dispatch-proto

0 commit comments

Comments
 (0)