diff --git a/proto-downloader/download-bisq-protos.sh b/proto-downloader/download-bisq-protos.sh index 9ebd67f..7acedce 100755 --- a/proto-downloader/download-bisq-protos.sh +++ b/proto-downloader/download-bisq-protos.sh @@ -7,6 +7,8 @@ echo "You may want to skip this step and copy your own local .proto files instea curl -o ./pb.proto https://raw.githubusercontent.com/bisq-network/bisq/master/proto/src/main/proto/pb.proto curl -o ./grpc.proto https://raw.githubusercontent.com/bisq-network/bisq/master/proto/src/main/proto/grpc.proto -# Copy the proto files to the Java and Python example projects. +echo "Copying proto files to the Java examples project." cp -v *.proto ../java-examples/src/main/proto -cp -v *.proto ../python-examples/proto + +echo "Moving proto files to the Python examples project; removing .proto files in this download directory." +mv -v *.proto ../python-examples/proto