From aac821cf0ba0687ee3cf3c73ab25e53729fc1214 Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Thu, 9 Jan 2025 10:28:30 -0500 Subject: [PATCH] fixed path print out at top of dump --- scripts/files/filedump.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/files/filedump.pl b/scripts/files/filedump.pl index de91299c..6dba184a 100644 --- a/scripts/files/filedump.pl +++ b/scripts/files/filedump.pl @@ -64,7 +64,8 @@ sub do_dump { $header_copy = $header; $shorter_name = $to_dump; - $shorter_name =~ s/^\.\///; + $shorter_name =~ s/^.*\/(.*)/\1/; +# $shorter_name =~ s/^\.\///; $shorter_name =~ s/\.txt$//; $shorter_name =~ s/_/ /g; -- 2.34.1