This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 9494ef3fc5 Fixed: pullAllPluginsSource.sh deleted local .git directory (OFBIZ-12927) 9494ef3fc5 is described below commit 9494ef3fc58379f9df4f230021981e03cb71c8ac Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sat Mar 16 09:57:27 2024 +0100 Fixed: pullAllPluginsSource.sh deleted local .git directory (OFBIZ-12927) Last commit did not work, syntax error :/ --- pullAllPluginsSource.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pullAllPluginsSource.sh b/pullAllPluginsSource.sh index b4cba5214a..73bc19a846 100755 --- a/pullAllPluginsSource.sh +++ b/pullAllPluginsSource.sh @@ -31,5 +31,6 @@ git clone --depth 1 --single-branch --branch $branch https://github.com/apache/o # remove .git, in this case it's useless information if [ -d "plugins" ] - rm -rf plugins/.git + then + rm -rf plugins/.git fi