Skip to content

Commit 856d528

Browse files
committed
Fix flux.bat for running on Windows
Running flux.bat on Windows failed with a java.lang.ClassNotFoundException: $FLUX_JAVA_OPTIONS As the comment above the changed line mentions, the space is important. Seems it was accidentally removed when reformatting the file in 3e7f486
1 parent 3c9998c commit 856d528

File tree

1 file changed

+1
-1
lines changed
  • metafacture-runner/src/main/scripts

1 file changed

+1
-1
lines changed

metafacture-runner/src/main/scripts/flux.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ REM default we make sure that it can always be substituted.
5555
IF "x%FLUX_JAVA_OPTIONS%" == "x" (
5656
REM The space character at the end of the following
5757
REM line is important and must not be removed:
58-
SET FLUX_JAVA_OPTIONS=
58+
SET FLUX_JAVA_OPTIONS=
5959
)
6060
FOR /F "tokens=1,* delims==" %%I IN ('SET') DO (
6161
SET JAVA_OPTS=!JAVA_OPTS:$%%I=%%J!

0 commit comments

Comments
 (0)