summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNhi Pham <nhi@os.amperecomputing.com>2024-09-30 02:51:19 +0000
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-10-09 10:53:19 +0000
commit7bac0a940e905941487c3a2f2f5fb6ee43ff040a (patch)
tree8cd6f4401d886493c100f95f380d69f259227148
parentfd619ec4608564fe6cf5ba8f9ae986206355861e (diff)
downloadedk2-7bac0a940e905941487c3a2f2f5fb6ee43ff040a.tar.gz
edk2-7bac0a940e905941487c3a2f2f5fb6ee43ff040a.tar.bz2
edk2-7bac0a940e905941487c3a2f2f5fb6ee43ff040a.zip
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 <nhi@os.amperecomputing.com>
-rw-r--r--BaseTools/Scripts/SetupGit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Scripts/SetupGit.py b/BaseTools/Scripts/SetupGit.py
index 5f93124967..9014eb584c 100644
--- a/BaseTools/Scripts/SetupGit.py
+++ b/BaseTools/Scripts/SetupGit.py
@@ -150,7 +150,7 @@ if __name__ == '__main__':
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)