Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
11 lines
142 B
Bash
Executable file
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;
|