From 274bb501bc3d0aa16ee4ee35eb48811df8b85f7e Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Tue, 4 Dec 2018 17:19:25 +0100 Subject: [PATCH] STYLE: incorrect option name handling for foamCreateModuleInclude - The usage claimed '-output=', but was using '--output=' for the output file. Rectify to use single dash as documented. --- bin/tools/foamCreateModuleInclude | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tools/foamCreateModuleInclude b/bin/tools/foamCreateModuleInclude index f8e8775ed3..77a275173f 100755 --- a/bin/tools/foamCreateModuleInclude +++ b/bin/tools/foamCreateModuleInclude @@ -85,10 +85,10 @@ do --recursive-backend--) optBackend=true ;; - --output=*) + -output=*) moduleOutput="${1#*=}" ;; - --tmpdir=*) + -tmpdir=*) moduleTmpDir="${1#*=}" ;; -*)