Bug 25510: Put space between negation operator and function name
authorDavid Cook <dcook@prosentient.com.au>
Mon, 18 May 2020 06:23:07 +0000 (06:23 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 19 May 2020 07:28:56 +0000 (08:28 +0100)
This patch puts a space between the negation operator ! and
the function name (ie log4perl_component).

Signed-off-by: David Cook <dcook@prosentient.com.au>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

debian/koha-common.postinst

index f14b031..b645b47 100644 (file)
@@ -146,7 +146,7 @@ log4perl_component()
 # Take care of the instance's log4perl.conf file
 for site in $(koha-list); do
     log4perl_config="/etc/koha/sites/$site/log4perl.conf"
-    if !log4perl_component $log4perl_config "z3950"; then
+    if ! log4perl_component $log4perl_config "z3950"; then
         cat <<EOF >> $log4perl_config
 log4perl.logger.z3950 = WARN, Z3950
 log4perl.appender.Z3950=Log::Log4perl::Appender::File
@@ -159,7 +159,7 @@ log4perl.appender.Z3950.utf8=1
 EOF
     fi
 
-    if !log4perl_component $log4perl_config "api"; then
+    if ! log4perl_component $log4perl_config "api"; then
         cat <<EOF >> $log4perl_config
 log4perl.logger.api = WARN, API
 log4perl.appender.API=Log::Log4perl::Appender::File
@@ -175,7 +175,7 @@ done
 
 for site in $(koha-list); do
     log4perl_config="/etc/koha/sites/$site/log4perl.conf"
-    if !log4perl_component $log4perl_config "sip"; then
+    if ! log4perl_component $log4perl_config "sip"; then
         cat <<EOF >> $log4perl_config
 log4perl.logger.sip = DEBUG, SIP
 log4perl.appender.SIP=Log::Log4perl::Appender::File