From f861440680e7b7391d2ed889f4678d373d966ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 23 Nov 2019 12:55:59 +0100 Subject: [PATCH] blessed-builds: Check the right changes file The binary changes file can never pass the check since the dsc referenced there is mangled by the mergechanges call. Mitigates: #37 --- blessed_build_param.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blessed_build_param.groovy b/blessed_build_param.groovy index 06777bf..87b714c 100644 --- a/blessed_build_param.groovy +++ b/blessed_build_param.groovy @@ -180,7 +180,7 @@ pkgs.each { pkg -> dput -c /etc/dput.cf pureos-ftp "\${source_changes}" || exit 32; #Check with lintian for errors - lintian -c "\${changes_file}" || exit 64 + lintian -c "\${source_changes}" || exit 64 """.stripIndent() node_label = "${os}-${arch}" -- GitLab