HOP-303 (#134)

Fix startup scripts for windows
diff --git a/assemblies/static/src/main/resources/hop-gui.bat b/assemblies/static/src/main/resources/hop-gui.bat
index 2eac1ce..ff599bb 100755
--- a/assemblies/static/src/main/resources/hop-gui.bat
+++ b/assemblies/static/src/main/resources/hop-gui.bat
@@ -20,10 +20,10 @@
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_DIRECTORY%"=="" (
   set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_AUDIT_DIRECTORY="%HOP_AUDIT_DIRECTORY%
-}
+)
 if not "%HOP_CONFIG_DIRECTORY%"=="" (
   set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_CONFIG_DIRECTORY="%HOP_CONFIG_DIRECTORY%
-}
+)
 
 @echo on
 %_HOP_JAVA% -classpath %LIBSPATH%\*;%SWTJAR%\* "-Djava.library.path=%LIBSPATH%" %HOP_OPTIONS% org.apache.hop.ui.hopgui.HopGui
diff --git a/assemblies/static/src/main/resources/hop-run.bat b/assemblies/static/src/main/resources/hop-run.bat
index 9a7ad0d..df23ac5 100755
--- a/assemblies/static/src/main/resources/hop-run.bat
+++ b/assemblies/static/src/main/resources/hop-run.bat
@@ -21,10 +21,10 @@
 REM Pass HOP variables if they're set.
 if not "%HOP_AUDIT_DIRECTORY%"=="" (
   set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_AUDIT_DIRECTORY="%HOP_AUDIT_DIRECTORY%
-}
+)
 if not "%HOP_CONFIG_DIRECTORY%"=="" (
   set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_CONFIG_DIRECTORY="%HOP_CONFIG_DIRECTORY%
-}
+)
 @echo on
 %_HOP_JAVA% -classpath %LIBSPATH%\*;%SWTJAR%\* "-Djava.library.path=%LIBSPATH%" %HOP_OPTIONS% org.apache.hop.run.HopRun
 @echo off