From fae131fabcbacd13d3e00658adbc15e1bdbb6c9c Mon Sep 17 00:00:00 2001 From: Jacques Le Roux Date: Mon, 18 Mar 2024 07:34:52 +0100 Subject: [PATCH] Improved: pullAllPluginsSource.sh deleted local .git directory (OFBIZ-12927) Removes useless and failing `set -e` as documented at https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference Though I have no idea why it's failing :/ --- pullAllPluginsSource.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pullAllPluginsSource.sh b/pullAllPluginsSource.sh index 1008644c70b..94b755aa416 100755 --- a/pullAllPluginsSource.sh +++ b/pullAllPluginsSource.sh @@ -18,7 +18,8 @@ # Syntax: ./pullAllPluginsSource.sh -set -e +# Not needed, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference +# set -e # Whatever, create anew if [ -d "plugins" ]