Skip to content
Snippets Groups Projects
Commit 0ffe4c0f authored by mattijs's avatar mattijs
Browse files

BUG: foamCleanPath: did not remove last element in path when stripping using wildcards

parent d6874f0f
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# ========= | # ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | # \\ / O peration |
# \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. # \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
# \\/ M anipulation | # \\/ M anipulation |
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# License # License
...@@ -94,7 +94,7 @@ do ...@@ -94,7 +94,7 @@ do
wildcard=$1 wildcard=$1
shift shift
##DEBUG echo "remove>$wildcard<" 1>&2 ##DEBUG echo "remove>$wildcard<" 1>&2
dirList=$(echo "$dirList" | sed -e "s@${wildcard}[^:]*:@@g") dirList=$(echo "$dirList:" | sed -e "s@${wildcard}[^:]*:@@g")
done done
# split on ':' (and on space as well to avoid any surprises) # split on ':' (and on space as well to avoid any surprises)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment