From 008a768286529a3f88f5c6534a6fb0d15133711b Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Tue, 22 Jan 2019 13:17:31 +0000 Subject: [PATCH] foamCloneCase: Added exit 0 Resolves patch request https://bugs.openfoam.org/view.php?id=3151 --- bin/foamCloneCase | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/foamCloneCase b/bin/foamCloneCase index 74e07a762d..196a1a66fe 100755 --- a/bin/foamCloneCase +++ b/bin/foamCloneCase @@ -3,7 +3,7 @@ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | Website: https://openfoam.org -# \\ / A nd | Copyright (C) 2015-2018 OpenFOAM Foundation +# \\ / A nd | Copyright (C) 2015-2019 OpenFOAM Foundation # \\/ M anipulation | #------------------------------------------------------------------------------ # License @@ -156,4 +156,6 @@ cpIfPresent "$srcDir/0.orig" "$tgtDir" [ "$scripts" ] && echo "Copying scripts from $srcDir to $tgtDir:" && \ for s in $scripts ; do cpIfPresent "$s" "$tgtDir" ; done +exit 0 + #------------------------------------------------------------------------------