blob: 1d24f922a008e6f352000e8a6783575f864319a2 (
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 --fix --allow-dirty --allow-no-vcs --quiet
Pop-Location
}
Set-Location $starting_dir
|