From aa1638a7ffd0c12335c5b8fc848a1374ce642714 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Tue, 8 Nov 2022 18:43:10 -0600 Subject: [PATCH] Remove use of Cwd module Since all file manipulations now use absolute file names, there is no longer any need to query the current working directory. --- gatekeeper.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/gatekeeper.pl b/gatekeeper.pl index 16f2500..acbf1b6 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -181,7 +181,6 @@ use Sys::Syslog qw(:DEFAULT setlogsock); use Getopt::Long; use Text::Wrap; use POSIX qw(strftime WIFSIGNALED WTERMSIG); -use Cwd; use Email::MessageID; -- 2.25.1