From e3bbbfaf188bd66ce9e1aef5da9226c818ff601a Mon Sep 17 00:00:00 2001 From: Stuart Prescott Date: Sun, 2 Mar 2025 12:08:02 +1100 Subject: [PATCH] Allow a specified version in check-build-logs --- debian/check-build-logs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/check-build-logs b/debian/check-build-logs index 76f0465c..2a278aae 100755 --- a/debian/check-build-logs +++ b/debian/check-build-logs @@ -4,6 +4,7 @@ from collections import defaultdict from pathlib import Path import re import subprocess +import sys from debian.changelog import Changelog @@ -99,6 +100,9 @@ if __name__ == "__main__": pkg = ch.package ver = str(ch.version) + if len(sys.argv) == 2: + ver = sys.argv[1] + fetch_build_logs(pkg, ver) results = process_logs(pkg, ver) print_table(results) -- 2.30.2