rqbit/scripts/publish.sh

7 lines
137 B
Bash
Raw Normal View History

2023-11-16 07:47:00 +00:00
#!/bin/bash
find crates -maxdepth 1 -type d | grep '/' | while read dir; do
pushd "${dir}"
cargo publish --dry-run
popd
done