From c5549ca1442aad0f071a263f324e3c9bcac6ad7e Mon Sep 17 00:00:00 2001 From: Ashley E Desimone Date: Mon, 8 Nov 2021 10:28:16 -0800 Subject: [PATCH] EdkRepo: Specify the Python version in installed Python launcher The Python launchers installed by EdkRepo should explicitly point to the supported version where possible allowing and git hooks to 'import edkrepo' if needed. Signed-off-by: Ashley E Desimone --- edkrepo_installer/EdkRepoInstaller/InstallerStrings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edkrepo_installer/EdkRepoInstaller/InstallerStrings.cs b/edkrepo_installer/EdkRepoInstaller/InstallerStrings.cs index 1542641..70a84f7 100644 --- a/edkrepo_installer/EdkRepoInstaller/InstallerStrings.cs +++ b/edkrepo_installer/EdkRepoInstaller/InstallerStrings.cs @@ -86,7 +86,7 @@ public static string EdkrepoPython3LauncherScript { get { - return "python3"; + return "python -3.8"; } }