From 3bb47e76d4592c1a012ea36a3431753483296484 Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Sat, 6 Apr 2013 12:14:55 +0200 Subject: [PATCH] fat32compat: nodes ending with "." --- atom | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atom b/atom index 6c9ae7b..9ad81d4 100755 --- a/atom +++ b/atom @@ -1186,6 +1186,9 @@ sanitizeFile() { # Filenames can't begin or end with ' ' string=${string/#+( )/} string=${string/%+( )/} + + # Filenames can't end with '.' + string=${string/%+(.)/} fi echo "$string" }