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>
This commit is contained in:
Nhi Pham 2024-09-30 02:51:19 +00:00 committed by mergify[bot]
parent fd619ec460
commit 7bac0a940e
1 changed files with 1 additions and 1 deletions

View File

@ -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)