rqbit/scripts/publish.sh
2023-11-16 07:47:00 +00:00

7 lines
No EOL
137 B
Bash
Executable file

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