From 8a87558577a9295472875d325468190e12be1ea2 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 25 Oct 2016 17:06:59 +0100 Subject: [PATCH] foamCleanPath: Changed sed delimiter from '@' to '|' to allow Email addresses Patch contributed by Bruno Santos http://bugs.openfoam.org/view.php?id=2306 --- bin/foamCleanPath | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/foamCleanPath b/bin/foamCleanPath index 86a8c171fd..cbae8578dc 100755 --- a/bin/foamCleanPath +++ b/bin/foamCleanPath @@ -107,7 +107,7 @@ do ##DEBUG echo "remove>$wildcard<" 1>&2 if [ -n "$wildcard" ] then - dirList=$(echo "$dirList:" | sed -e "s@${wildcard}[^:]*:@@g") + dirList=$(echo "$dirList:" | sed -e "s|${wildcard}[^:]*:||g") fi done