From 91c37bbce464880dcb5b426826307c2c7bd1aff6 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 5 Aug 2021 16:39:02 -0500 Subject: [PATCH] Include debug on Windows This adds the installer option to include the debug binaries (i.e. `python_d.exe`) on Windows. Fixes https://github.com/actions/setup-python/issues/86 --- installers/win-setup-template.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/win-setup-template.ps1 b/installers/win-setup-template.ps1 index f2ac2cd5..87d68fb7 100644 --- a/installers/win-setup-template.ps1 +++ b/installers/win-setup-template.ps1 @@ -67,7 +67,7 @@ function Get-ExecParams { if ($IsMSI) { "TARGETDIR=$PythonArchPath ALLUSERS=1" } else { - "DefaultAllUsersTargetDir=$PythonArchPath InstallAllUsers=1" + "DefaultAllUsersTargetDir=$PythonArchPath InstallAllUsers=1 Include_debug=1" } }