Fixed a logic bug in the argument checking for the
manifest-repos command.
Signed-off-by: Nate DeSimone <[email protected]>
Cc: Ashley E Desimone <[email protected]>
Cc: Puja Pandya <[email protected]>
Cc: Bret Barkelew <[email protected]>
Cc: Prince Agyeman <[email protected]>
Cc: Erik Bjorge <[email protected]>
---
edkrepo/commands/humble/manifest_repos_humble.py | 2 +-
edkrepo/commands/manifest_repos_command.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/edkrepo/commands/humble/manifest_repos_humble.py
b/edkrepo/commands/humble/manifest_repos_humble.py
index 7dc8bfe..4a886a4 100644
--- a/edkrepo/commands/humble/manifest_repos_humble.py
+++ b/edkrepo/commands/humble/manifest_repos_humble.py
@@ -14,7 +14,7 @@ Contains user visible strings printed by the manifest_repos
command.
CFG_LIST_ENTRY = 'Config File: edkrepo.cfg Manifest Repository Name: {}'
USER_CFG_LIST_ENTRY = 'Config File: edkrepo_user.cfg Manifest Repository Name:
{}'
NAME_REQUIRED = 'The "name" argument is required to add/remove a manifest
repository'
-ADD_REQUIRED = 'The "name", "url", "branch" and "local-path" arguments are
required to add a manifest repository'
+ADD_REQUIRED = 'The "name", "url", "branch" and "path" arguments are required
to add a manifest repository'
CANNOT_REMOVE_CFG = 'Manifest repositories cannot be removed from the
edkrepo.cfg file.'
REMOVE_NOT_EXIST = 'The selected manifest repository does note exist in the
edkrepo_user.cfg file.'
ALREADY_EXISTS = 'A manifest repository already exists with name: {}'
diff --git a/edkrepo/commands/manifest_repos_command.py
b/edkrepo/commands/manifest_repos_command.py
index b817662..af79f19 100644
--- a/edkrepo/commands/manifest_repos_command.py
+++ b/edkrepo/commands/manifest_repos_command.py
@@ -80,7 +80,7 @@ class ManifestRepos(EdkrepoCommand):
elif (args.action == ('add' or 'remove')) and not args.name:
raise EdkrepoInvalidParametersException(humble.NAME_REQUIRED)
- elif args.action == 'add' and not (args.branch or args.url or
args.local_path):
+ elif args.action == 'add' and (not args.branch or not args.url or not
args.path):
raise EdkrepoInvalidParametersException(humble.ADD_REQUIRED)
elif args.action == 'remove' and args.name and args.name in cfg_repos:
raise EdkrepoInvalidParametersException(humble.CANNOT_REMOVE_CFG)
--
2.26.2.windows.1
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#60919): https://edk2.groups.io/g/devel/message/60919
Mute This Topic: https://groups.io/mt/74764970/21656
Group Owner: [email protected]
Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-