From fb8d88e8f29238446ff49ef55affd41e10b9d738 Mon Sep 17 00:00:00 2001 From: Jussi Lundstedt Date: Mon, 29 Oct 2018 17:18:09 -0400 Subject: [PATCH] Update jdbcimage.bat to fix issue #5 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. --- jdbcimage.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdbcimage.bat b/jdbcimage.bat index b09bb62..d05fdfa 100644 --- a/jdbcimage.bat +++ b/jdbcimage.bat @@ -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 %*