Skip to content

Commit

Permalink
Update jdbcimage.bat to fix issue #5
Browse files Browse the repository at this point in the history
Removes the extra double quote to fix issue #5 and allow `jdbcimage.bat` to execute in Windows. Tested that the change allows execution to begin as expected on Windows 10.
  • Loading branch information
jlundstedt authored Oct 29, 2018
1 parent e802960 commit fb8d88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jdbcimage.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@setlocal
@echo off
set JAVA_OPTS=-Xmx1024m
java %JAVA_OPTS% -classpath ""%~dp0target/jdbcimage.jar;%~dp0lib/*" pz.tool.jdbcimage.main.JdbcImageMain %*
java %JAVA_OPTS% -classpath "%~dp0target/jdbcimage.jar;%~dp0lib/*" pz.tool.jdbcimage.main.JdbcImageMain %*

0 comments on commit fb8d88e

Please sign in to comment.