bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
This commit is contained in:
parent
14bab7abee
commit
2f8f56499c
|
@ -23,6 +23,6 @@
|
|||
<Copy SourceFiles="@(_SSLDLL)" DestinationFolder="$(OutDir)" />
|
||||
</Target>
|
||||
<Target Name="_CleanSSLDLL" BeforeTargets="Clean">
|
||||
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" />
|
||||
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
|
||||
</Target>
|
||||
</Project>
|
Loading…
Reference in New Issue