From c99f3abfdc86d576d9adb62ef6966325c14d2f1e Mon Sep 17 00:00:00 2001 From: Nigel Kukard Date: Sat, 7 Jan 2017 12:33:40 +0000 Subject: [PATCH] Fixed syntax error --- awit-certmaster | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awit-certmaster b/awit-certmaster index 7d59ef9..4ef1c56 100755 --- a/awit-certmaster +++ b/awit-certmaster @@ -434,7 +434,7 @@ sub logger_end # If we're being quiet here is where we should output the logs if there were warnings - if ($self->{'quiet'} && grep({/^WARNING/},@{$self->{'_logs'}})) { + if ($self->{'quiet'} && grep({/^WARNING/} @{$self->{'_logs'}})) { print(STDERR @{$self->{'_logs'}}); } @@ -1785,7 +1785,7 @@ use Getopt::Long; my $NAME = "AWIT-CertMaster"; -our $VERSION = "1.1.4"; +our $VERSION = "1.1.5"; -- GitLab