Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Latest commit

 

History

History
5 lines (2 loc) · 154 Bytes

notes.rst

File metadata and controls

5 lines (2 loc) · 154 Bytes

Test all: pd=$(pwd); for d in find . -maxdepth 1 -type d; do if [ -e "$d/Cargo.toml" ]; then echo $d; cd "$d"; cargo test || break; cd $pd; fi; done