Unverified Kaydet (Commit) f9b364fe authored tarafından Steve Dower's avatar Steve Dower Kaydeden (comit) GitHub

bro-33614: Override exit code in find_msbuild.bat (GH-7169)

üst 989b9e0e
......@@ -57,3 +57,4 @@
@if not defined MSBUILD @echo Failed to find MSBuild
@set _Py_MSBuild_Source=
@if not defined MSBUILD @exit /b 1
@exit /b 0
......@@ -142,8 +142,8 @@
<_Lines Include="@(_Symbols->'%(Symbol)')" />
</ItemGroup>
<MakeDir Directories="$(IntDir)" />
<Message Text="Updating python3stub.def" Condition="@(_OriginalLines) != @(_Lines)" Importance="high" />
<Message Text="Updating python3stub.def" Condition="@(_Lines) != @(_OriginalLines)" Importance="high" />
<WriteLinesToFile File="$(IntDir)python3stub.def" Lines="@(_Lines)" Overwrite="true"
Condition="@(_DefLines) != @(_Lines)" />
Condition="@(_Lines) != @(_OriginalLines)" />
</Target>
</Project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment