Fix librqbit readme

This commit is contained in:
Igor Katson 2023-11-16 07:47:00 +00:00
parent da3e6abc5a
commit c10f4fcd1b
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
2 changed files with 47 additions and 0 deletions

7
scripts/publish.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
find crates -maxdepth 1 -type d | grep '/' | while read dir; do
pushd "${dir}"
cargo publish --dry-run
popd
done