rs-basic/for_each_crate_cargo.sh
Christoph J. Scherr ce71b2ceec
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
reorganize the workspace
2025-03-14 22:24:47 +01:00

11 lines
142 B
Bash
Executable file

#!/bin/bash
ROOT=$PWD
DIRS=$(ls ./crates)
echo $DIRS
for dir in $DIRS; do
cd crates/$dir;
eval "bash $ROOT/cargo.sh $@";
cd $ROOT;
done;