Skip to content
Snippets Groups Projects
Commit 41d5392c authored by Guillaume Desmottes's avatar Guillaume Desmottes
Browse files

ade: display sysroot versions in case of mismatch


Signed-off-by: default avatarGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Reviewed-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D5254
parent da19b92b
No related branches found
No related tags found
No related merge requests found
...@@ -467,7 +467,7 @@ class SysrootManager: ...@@ -467,7 +467,7 @@ class SysrootManager:
# Don't fail on this check as it's broken for current images # Don't fail on this check as it's broken for current images
if installed.version != version: if installed.version != version:
logging.warning("Mismatch between installed version and expected one") logging.warning("Mismatch between installed version ({0}) and expected one ({1})".format(installed.version, version))
return installed return installed
...@@ -574,7 +574,7 @@ class SysrootManager: ...@@ -574,7 +574,7 @@ class SysrootManager:
# Don't fail on this check as it's broken for current images # Don't fail on this check as it's broken for current images
if f.version != version: if f.version != version:
logging.warning("Mismatch between downloaded version and expected one") logging.warning("Mismatch between downloaded version ({0}) and expected one ({1})".format(f.version, version))
return f return f
......
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