andreasohlund / APIComparer

Compares NuGetPackages/Assemblies and displays changes in the public api.
MIT License
51 stars 4 forks source link

Clean failed comparisons #85

Open andreasohlund opened 6 years ago

andreasohlund commented 6 years ago

Eg https://github.com/ParticularLabs/APIComparer/issues/82

To make sure transient failures won't cause the comparison to fail permanently

Current workaround is to run

(Get-ChildItem *.html | Select-String -Pattern "failed with the following" | Select-Object -ExpandProperty path -Unique) | ForEach-Object{Remove-Item -Force -LiteralPath $_}

Periodically