From fbd5202a374ff3524ca992be5ad002caa099d936 Mon Sep 17 00:00:00 2001 From: Visvendra Singh Rajpoot Date: Thu, 21 May 2026 18:47:36 +0530 Subject: [PATCH] Fixed: Correct the Unix command for downloading the Gradle wrapper in README (OFBIZ-13417) The "Quick start" section of README.md documented the Unix command to download the Gradle wrapper as an absolute path (/gradle/init-gradle-wrapper.sh), which makes it fail with "No such file or directory" when run from the OFBiz home directory. Use the relative executable form (./gradle/init-gradle-wrapper.sh), consistent with the other Unix-like commands in the README (e.g. ./gradlew, ./pullPluginSource.sh). The script is executable, so it runs directly. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f3d7ed6ca2..da8dd3c0ae9 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ MS Windows: `init-gradle-wrapper` > **Note** - > If you wonder where are stored the PowerShell Executables, here are the answers: [https://s.apache.org/w5dye](https://s.apache.org/w5dye) -Unix-like OS: `/gradle/init-gradle-wrapper.sh` +Unix-like OS: `./gradle/init-gradle-wrapper.sh` ### Prepare OFBiz