From 3a536192124fa53776a3380e43475a7fa67fb410 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Fri, 12 Dec 2025 16:02:56 +0100 Subject: [PATCH] change postinst wihtout error --- src/debian/postinst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debian/postinst b/src/debian/postinst index 94f8a4b..93240aa 100644 --- a/src/debian/postinst +++ b/src/debian/postinst @@ -17,7 +17,7 @@ main() [ -f "$DLLCONFIG" ] \ || errlog "ERROR: $DLLCONFIG does not exist" \ - || return $? + || return 0 echo "found $DLLCONFIG" local entrycheck=$(cat $DLLCONFIG | grep $ENTRY) @@ -28,7 +28,7 @@ main() sed -i "\$a$ENTRY" $DLLCONFIG \ || errlog "could not add entry $ENTRY to $DLLCONFIG" \ - || return $? + || return 0 echo "add $ENTRY to $DLLCONFIG" } -- 2.47.3