From 8ad390bba34e2afacca34a8f63e9d18de7d7afb8 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Mon, 8 Dec 2025 20:18:05 +0100 Subject: [PATCH] change ignore errors uninstall --- src/debian/postrm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debian/postrm b/src/debian/postrm index ae14384..482b813 100644 --- a/src/debian/postrm +++ b/src/debian/postrm @@ -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 "/$ENTRY/d" $DLLCONFIG \ || errlog "could not remove $ENTRY from $DLLCONFIG" \ - || return $? + || return 0 echo "remove $ENTRY from $DLLCONFIG" } -- 2.47.3