Skip to content

Commit

Permalink
BaseTools/SetupGit.py: Fix invalid choice 'edk2-test'
Browse files Browse the repository at this point in the history
This fixes missing 'edk2-test' in the choices of the repo name option.

Signed-off-by: Nhi Pham <[email protected]>
  • Loading branch information
nhivp authored and mergify[bot] committed Oct 9, 2024
1 parent fd619ec commit 7bac0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BaseTools/Scripts/SetupGit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7bac0a9

Please sign in to comment.