blob: 1858873ba07b9fd5c31062ae083103448960f238 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
$starting_dir = Get-Location
Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object {
$project_dir = $_.DirectoryName
Push-Location $project_dir
cargo clippy --quiet
Pop-Location
}
Set-Location $starting_dir
|