From 68162e8b95db6f5a087b1f28c64ee3573a590a5c Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Thu, 30 Jan 2025 03:25:03 +0100 Subject: [PATCH] FIX copy extensions regex --- atom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom b/atom index 66cc34f..9302fde 100755 --- a/atom +++ b/atom @@ -642,7 +642,7 @@ do getDestFile for copy_ext in "${destinationcopyext[@]}" do - if [[ $filename =~ '.*\.'$copy_ext'$' ]] + if [[ $filename =~ '.*'"$copy_ext" ]] then copied=1 break