Commit 49032fa7 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)

Add $(PyDebugExt) in "Killing any running python$(PyDebugExt).exe
instances...".
parent 0fc14b37
......@@ -127,7 +127,7 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses
</UsingTask>
<Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'">
<Message Text="Killing any running python.exe instances..." Importance="high" />
<Message Text="Killing any running python$(PyDebugExt).exe instances..." Importance="high" />
<KillPython FileName="$(OutDir)python$(PyDebugExt).exe" />
</Target>
......
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