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 9bd538be3e Fixed: Replace SvnCheckout in Gradle (OFBIZ-12868) 9bd538be3e is described below commit 9bd538be3eef75eba33ae1c40e88ba7f90b2bdce Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Wed Jan 3 13:15:44 2024 +0100 Fixed: Replace SvnCheckout in Gradle (OFBIZ-12868) Updates the documentation for pullAllPluginsSource.sh and pullPluginSource.sh Seems that, despite working locally in Ubuntu 20.04 and git-bash, changing pullAllPluginsSource.sh from git switch "$branch" to git switch -C "$branch" does not work as expected in GH actions. Another incomprehensible behaviour...so far... --- pullAllPluginsSource.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pullAllPluginsSource.sh b/pullAllPluginsSource.sh index 0551811f74..fd69ddc790 100755 --- a/pullAllPluginsSource.sh +++ b/pullAllPluginsSource.sh @@ -33,7 +33,7 @@ cd plugins # By default the clone branch is trunk if [ ! $branch = trunk ] then - git switch -C "$branch" + git switch "$branch" fi # remove .git, in this case it's big useless information