From ac6f88150289e7f5257450773be759a6375cd3ef Mon Sep 17 00:00:00 2001 From: Chris Greenshields Date: Sun, 21 May 2017 21:23:44 -0400 Subject: [PATCH] foamNewBC: correction to character match in sed Thanks to Daisuke Hitomi for the change --- bin/foamNewBC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/foamNewBC b/bin/foamNewBC index a52faf71a..5abaabef1 100755 --- a/bin/foamNewBC +++ b/bin/foamNewBC @@ -213,7 +213,7 @@ do sed -i \ -e '/^template$/d' \ -e 's/this->//g' \ - -e 's/\.template[\t ]*\([a-Z]\)/\.\1/g' \ + -e 's/\.template[\t ]*\([a-zA-Z]\)/\.\1/g' \ -e '/#ifdef NoRepository/,/\/\/ */d' \ "${name}/${new_file}" ;;