From 595affe56c31095dc3e195107ff51e39d1125400 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Sat, 5 Nov 2022 15:48:12 -0500 Subject: [PATCH] Rearrange comment to match pattern --- gatekeeper.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatekeeper.pl b/gatekeeper.pl index 4877858..98f2202 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -477,7 +477,7 @@ require File::Spec::Unix; # ensure that File::Spec::Unix is loaded # regex matching an acceptable filename in "this" directory # must begin with an alphanumeric character -# and contain only alphanumeric, underscore, plus sign, hyphen, dot, and tilde +# and contain only hyphen, dot, alphanumeric, underscore, plus sign, and tilde # note that an acceptable filename may not begin with dot, so ".." is out my $RE_filename_here = qr/[[:alnum:]][-.[:alnum:]_+~]*/; # regex matching an acceptable relative filename in POSIX syntax -- 2.25.1