This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new cadae077fb hop.bat --dev-debug is not handled correctly #5777 (#5778)
cadae077fb is described below
commit cadae077fb083f0774b4496291a62eae6177cf1d
Author: Nicolas Adment <[email protected]>
AuthorDate: Mon Oct 6 09:32:56 2025 +0200
hop.bat --dev-debug is not handled correctly #5777 (#5778)
---
assemblies/static/src/main/resources/hop.bat | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/assemblies/static/src/main/resources/hop.bat
b/assemblies/static/src/main/resources/hop.bat
index aaa1ac5a22..5d03e14b9c 100755
--- a/assemblies/static/src/main/resources/hop.bat
+++ b/assemblies/static/src/main/resources/hop.bat
@@ -17,12 +17,12 @@ REM See the License for the specific language governing
permissions and
REM limitations under the License.
REM
-setlocal enableDelayedExpansion
+setlocal EnableDelayedExpansion
REM switch to script directory
cd /D %~dp0
-REM Option to change the Characterset of the Windows Shell to show foreign
caracters
+REM Option to change the character set of the Windows Shell to show foreign
characters
if not "%HOP_WINDOWS_SHELL_ENCODING%"=="" chcp %HOP_WINDOWS_SHELL_ENCODING%
set LIBSPATH=lib\core;lib\beam
@@ -46,7 +46,7 @@ if "%HOP_OPTIONS%"=="" set HOP_OPTIONS="-Xmx2048m"
REM See if we need to enable some remote debugging options for our developers.
REM
-FOR %%a in ("%*") DO (
+FOR %%a in (%*) DO (
if "%%~a" == "--dev-debug" (
set HOP_OPTIONS=%HOP_OPTIONS% -Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5010
)