diff --git a/verify_release b/verify_release index ce0e0acc14..136bef73ba 100755 --- a/verify_release +++ b/verify_release @@ -172,15 +172,16 @@ def main() -> int: # This is expected while build is not reproducible finished("ERROR: PyPI artifacts do not match built release") success = False + else: + finished(f"PyPI artifacts match the built release") progress("Downloading release from GitHub") if not verify_github_release(build_version, build_dir): # This is expected while build is not reproducible finished("ERROR: GitHub artifacts do not match built release") success = False - - if success: - finished("Github and PyPI artifacts match the built release") + else: + finished(f"GitHub artifacts match the built release") return 0 if success else 1