From b0fd0754f0a36dd797bbf6b3e38394cd4a529501 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sun, 11 Sep 2022 11:29:08 -0700 Subject: reprepro-rebuilder: move --no-run-lintian out into @args --- bin/reprepro-rebuilder | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bin/reprepro-rebuilder b/bin/reprepro-rebuilder index 50aaf38e..1b29aff0 100755 --- a/bin/reprepro-rebuilder +++ b/bin/reprepro-rebuilder @@ -181,14 +181,11 @@ sub build { @arch_needed = array_minus @arch_needed, @all_needed; my $build_debs = sub { - my @args = ("-d", $dist); + my @args = ("--no-run-lintian", "-d", $dist); shift and push @args, "-A"; for (@_) { my $basename = basename $_; - { - no autodie; - system "sbuild", "--no-run-lintian", @args, $basename - } + { no autodie; system "sbuild", @args, $basename } $? == 0 ? push(@succeeded, $basename) : push(@failed, $basename); -- cgit v1.2.3