From 59e34c855e7d96b8abd4ab94d212a57901ed6bc1 Mon Sep 17 00:00:00 2001 From: zsdc Date: Thu, 28 Sep 2023 22:44:49 +0300 Subject: pmacct: T5618: Fixed mistake in pmacct build script Removed extra `not` in the `if` condition of the build script which inverts the return code. --- packages/pmacct/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/pmacct') diff --git a/packages/pmacct/build.py b/packages/pmacct/build.py index 2445eb12..0f666392 100755 --- a/packages/pmacct/build.py +++ b/packages/pmacct/build.py @@ -34,7 +34,7 @@ def build_package() -> bool: build_cmd: list[str] = ['dpkg-buildpackage', '-uc', '-us', '-tc', '-b'] build_status: int = run(build_cmd).returncode - if not build_status: + if build_status: return False return True -- cgit v1.2.3