diff options
author | Nhi Pham <nhi@os.amperecomputing.com> | 2024-09-30 02:51:19 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-10-09 10:53:19 +0000 |
commit | 7bac0a940e905941487c3a2f2f5fb6ee43ff040a (patch) | |
tree | 8cd6f4401d886493c100f95f380d69f259227148 /BaseTools | |
parent | fd619ec4608564fe6cf5ba8f9ae986206355861e (diff) | |
download | edk2-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>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Scripts/SetupGit.py | 2 |
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)
|