From 69b3e82296a558ece1cbedd9e1007cb500bbd3f1 Mon Sep 17 00:00:00 2001 From: psykose Date: Wed, 19 Apr 2023 13:27:51 +0000 Subject: [PATCH] abuild: .. but silence only errors, not output fixes previous commit --- abuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abuild.in b/abuild.in index 0220a7b..6db4664 100755 --- a/abuild.in +++ b/abuild.in @@ -827,7 +827,7 @@ postcheck() { # look for pycache # wildcard should always get the system python dir, and this is faster than # trying to calculate the python version. - local pycache="$(find "$dir"/usr/lib/python* \( -type d -a -name "__pycache__" \) >/dev/null 2>&1 )" + local pycache="$(find "$dir"/usr/lib/python* \( -type d -a -name "__pycache__" \) 2>/dev/null )" if [ -n "$pycache" ] && [ "${name%-pyc}" = "$name" ]; then warning "Found __pycache__ but package name doesn't end with -pyc" fi