Skip to content

Commit 49032fa

Browse files
authored
bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)
Add $(PyDebugExt) in "Killing any running python$(PyDebugExt).exe instances...".
1 parent 0fc14b3 commit 49032fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses
127127
</UsingTask>
128128

129129
<Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'">
130-
<Message Text="Killing any running python.exe instances..." Importance="high" />
130+
<Message Text="Killing any running python$(PyDebugExt).exe instances..." Importance="high" />
131131
<KillPython FileName="$(OutDir)python$(PyDebugExt).exe" />
132132
</Target>
133133

0 commit comments

Comments
 (0)