This is an automated email from the ASF dual-hosted git repository.

vahid pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a8ed8e7  Update kafka-run-class.bat (#6291)
a8ed8e7 is described below

commit a8ed8e74951c6412aebee3395ef043938b274c93
Author: Chris Steingen <chris.stein...@gmail.com>
AuthorDate: Thu Feb 21 21:55:14 2019 +0100

    Update kafka-run-class.bat (#6291)
    
    Removed quotes from LogDir variable generation as there are additional 
quotes in Line 127.
    This caused problems when those batch files are invoked from a path that 
contains space characters.
---
 bin/windows/kafka-run-class.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/windows/kafka-run-class.bat b/bin/windows/kafka-run-class.bat
index f558a90..3bec536 100755
--- a/bin/windows/kafka-run-class.bat
+++ b/bin/windows/kafka-run-class.bat
@@ -111,7 +111,7 @@ IF ["%JMX_PORT%"] NEQ [""] (
 
 rem Log directory to use
 IF ["%LOG_DIR%"] EQU [""] (
-    set LOG_DIR="%BASE_DIR%/logs"
+    set LOG_DIR=%BASE_DIR%/logs
 )
 
 rem Log4j settings

Reply via email to