From 7bac0a940e905941487c3a2f2f5fb6ee43ff040a Mon Sep 17 00:00:00 2001 From: Nhi Pham Date: Mon, 30 Sep 2024 02:51:19 +0000 Subject: [PATCH] BaseTools/SetupGit.py: Fix invalid choice 'edk2-test' This fixes missing 'edk2-test' in the choices of the repo name option. Signed-off-by: Nhi Pham --- BaseTools/Scripts/SetupGit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Scripts/SetupGit.py b/BaseTools/Scripts/SetupGit.py index 5f93124967bf..9014eb584c6a 100644 --- a/BaseTools/Scripts/SetupGit.py +++ b/BaseTools/Scripts/SetupGit.py @@ -150,7 +150,7 @@ def write_config_value(repo, section, option, data): action='store_true', required=False) PARSER.add_argument('-n', '--name', type=str, metavar='repo', - choices=['edk2', 'edk2-platforms', 'edk2-non-osi'], + choices=['edk2', 'edk2-platforms', 'edk2-non-osi', 'edk2-test'], help='set the repo name to configure for, if not ' 'detected automatically', required=False)