Skip to content
Snippets Groups Projects
Commit 43d836ef authored by Simon McVittie's avatar Simon McVittie
Browse files

compare-steam-runtime: Adjust exit status


Don't fail if there are packages that are only in the Flatpak version.
Do fail if there are packages that are only in Steam, or that are
newer in Steam.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent e80b2ec1
No related branches found
No related tags found
No related merge requests found
......@@ -229,8 +229,8 @@ def main(packages, *, manifest=None, steam=None):
print('...')
if (missing_platform or missing_sdk or only_in_flatpak or
different_version):
if (missing_platform or missing_sdk or only_in_steam or
different_version or newer_in_steam):
raise SystemExit(1)
if __name__ == '__main__':
......
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