Skip to content
Snippets Groups Projects
Commit ad81c69d authored by amete's avatar amete
Browse files

Make list_patch_packages non fatal

parent e765b896
No related branches found
No related tags found
No related merge requests found
...@@ -711,7 +711,10 @@ def main(): ...@@ -711,7 +711,10 @@ def main():
logging.info("WARNING: You have specified a dedicated release as reference %s and as validation %s release, Your local setup area will not be considered!!!" %(cleanSetup, mysetup)) logging.info("WARNING: You have specified a dedicated release as reference %s and as validation %s release, Your local setup area will not be considered!!!" %(cleanSetup, mysetup))
logging.info("this option is mainly designed for comparing release versions!!") logging.info("this option is mainly designed for comparing release versions!!")
else: else:
list_patch_packages(ciMode) try:
list_patch_packages(ciMode)
except:
logging.warning("Cannot list patch packages...\n")
########### Get unique name for the clean run directory ########### Get unique name for the clean run directory
UniqName = str(uuid.uuid4()) UniqName = str(uuid.uuid4())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment