Skip to content

Commit 2f8f564

Browse files
authored
bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
1 parent 14bab7a commit 2f8f564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/openssl.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
<Copy SourceFiles="@(_SSLDLL)" DestinationFolder="$(OutDir)" />
2424
</Target>
2525
<Target Name="_CleanSSLDLL" BeforeTargets="Clean">
26-
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" />
26+
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
2727
</Target>
2828
</Project>

0 commit comments

Comments
 (0)