mirror of https://github.com/acidanthera/audk.git
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:
parent
fd619ec460
commit
7bac0a940e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue