Cc: Ashley DeSimone <ashley.e.desim...@intel.com> Cc: Puja Pandya <puja.pan...@intel.com> Cc: Erik Bjorge <erik.c.bjo...@intel.com> Cc: Bret Barkelew <bret.barke...@microsoft.com> Signed-off-by: Nate DeSimone <nathaniel.l.desim...@intel.com> --- edkrepo/common/common_repo_functions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/edkrepo/common/common_repo_functions.py b/edkrepo/common/common_repo_functions.py index 4b580c0..288dd27 100644 --- a/edkrepo/common/common_repo_functions.py +++ b/edkrepo/common/common_repo_functions.py @@ -14,6 +14,7 @@ import sys import unicodedata import urllib.request import subprocess +import traceback import git from git import Repo @@ -600,7 +601,9 @@ def checkout(combination_or_sha, verbose=False, override=False, log=None): if combination_is_in_manifest(combo_or_sha, manifest): manifest.write_current_combo(combo_or_sha) except: - print (CHECKOUT_COMBO_UNSUCCESFULL.format(combo_or_sha)) + if verbose: + traceback.print_exc() + print (CHECKOUT_COMBO_UNSUCCESSFULL.format(combo_or_sha)) # Return to the initial combo, since there was an issue with cheking out the selected combo checkout_repos(verbose, override, initial_repo_sources, workspace_path, manifest) finally: -- 2.24.0.windows.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#55960): https://edk2.groups.io/g/devel/message/55960 Mute This Topic: https://groups.io/mt/72057834/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-