Skip to content

Commit

Permalink
Fixed: pullAllPluginsSource.sh deleted local .git directory (OFBIZ-12…
Browse files Browse the repository at this point in the history
…927)

Last commit did not work either, uses a more traditional way, ie not set -e
  • Loading branch information
JacquesLeRoux committed Mar 16, 2024
1 parent 6c3294d commit b71503e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pullAllPluginsSource.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ branch=$(git branch --show-current)
git clone --depth 1 --single-branch --branch $branch https://github.com/apache/ofbiz-plugins.git plugins

# remove .git, in this case it's useless information
rm -r plugins/.git
if [ -d "plugins" ]
rm -rf plugins/.git
fi

0 comments on commit b71503e

Please sign in to comment.