From 6ee4fa6fe6d181dcfccabcbdc6c951fc4fc74bec Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 13 Apr 2024 11:11:21 +0200 Subject: [PATCH] no install error dll conf not exists --- src/debian/postinst | 2 +- src/debian/postrm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debian/postinst b/src/debian/postinst index 00151cd..32e9895 100755 --- a/src/debian/postinst +++ b/src/debian/postinst @@ -7,7 +7,7 @@ main() if [ ! -f "$DLLCONFIG" ]; then echo "ERROR: $DLLCONFIG does not exist" - exit 1 + exit 0 fi echo "found $DLLCONFIG" diff --git a/src/debian/postrm b/src/debian/postrm index 2bfa735..b8dacd3 100644 --- a/src/debian/postrm +++ b/src/debian/postrm @@ -7,7 +7,7 @@ main() if [ ! -f "$DLLCONFIG" ]; then echo "ERROR: $DLLCONFIG does not exist" - exit 1 + exit 0 fi echo "found $DLLCONFIG" -- 2.39.5