7 lines
No EOL
137 B
Bash
Executable file
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 |