From 73eb9ff65063f868f43e16b1abdd3bb573a75b43 Mon Sep 17 00:00:00 2001 From: Francois Marier Date: Fri, 16 Nov 2007 12:19:42 +1300 Subject: [PATCH] Fix bashism in the postinst script --- debian/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/postinst b/debian/postinst index c35a57f..863b8fe 100644 --- a/debian/postinst +++ b/debian/postinst @@ -22,7 +22,7 @@ case "$1" in db_get $PACKAGE/enable RUN="${RET:-true}" - if [ $RUN == 'true' ] + if [ $RUN = 'true' ] then RUN='yes' fi -- 2.30.2