Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C8570193C8 for ; Mon, 14 Mar 2016 21:32:37 +0000 (UTC) Received: (qmail 61922 invoked by uid 500); 14 Mar 2016 21:32:37 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 61876 invoked by uid 500); 14 Mar 2016 21:32:37 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 61867 invoked by uid 99); 14 Mar 2016 21:32:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Mar 2016 21:32:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1A562DFB8A; Mon, 14 Mar 2016 21:32:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tabish@apache.org To: commits@activemq.apache.org Message-Id: <27a8b385e7a647b8b7571762ffd9d032@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: activemq git commit: AMQ-6213 Quote path values to ensure the script works when the path contains spaces. Date: Mon, 14 Mar 2016 21:32:37 +0000 (UTC) Repository: activemq Updated Branches: refs/heads/master 4bd9a4ef6 -> 69c5fd7d5 AMQ-6213 Quote path values to ensure the script works when the path contains spaces. This closes #173 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/69c5fd7d Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/69c5fd7d Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/69c5fd7d Branch: refs/heads/master Commit: 69c5fd7d5a56d13b4be2c56ca8e932c3d06b5d05 Parents: 4bd9a4e Author: Timothy Bish Authored: Mon Mar 14 17:32:28 2016 -0400 Committer: Timothy Bish Committed: Mon Mar 14 17:32:28 2016 -0400 ---------------------------------------------------------------------- assembly/src/release/bin/activemq-admin.bat | 2 +- assembly/src/release/bin/activemq.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/69c5fd7d/assembly/src/release/bin/activemq-admin.bat ---------------------------------------------------------------------- diff --git a/assembly/src/release/bin/activemq-admin.bat b/assembly/src/release/bin/activemq-admin.bat index 35a5ffb..46e0627 100644 --- a/assembly/src/release/bin/activemq-admin.bat +++ b/assembly/src/release/bin/activemq-admin.bat @@ -80,7 +80,7 @@ if "%ACTIVEMQ_TMP%" == "" set ACTIVEMQ_TMP=%ACTIVEMQ_DATA%\tmp if /i not "%1" == "start" goto debugOpts -if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xmx1G -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=%ACTIVEMQ_CONF%\login.config +if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xmx1G -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config="%ACTIVEMQ_CONF%\login.config" if "%ACTIVEMQ_SUNJMX_START%" == "" set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote REM set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false http://git-wip-us.apache.org/repos/asf/activemq/blob/69c5fd7d/assembly/src/release/bin/activemq.bat ---------------------------------------------------------------------- diff --git a/assembly/src/release/bin/activemq.bat b/assembly/src/release/bin/activemq.bat index 22e1f9d..c532c43 100755 --- a/assembly/src/release/bin/activemq.bat +++ b/assembly/src/release/bin/activemq.bat @@ -77,7 +77,7 @@ if "%ACTIVEMQ_DATA%" == "" set ACTIVEMQ_DATA=%ACTIVEMQ_HOME%\data if "%ACTIVEMQ_TMP%" == "" set ACTIVEMQ_TMP=%ACTIVEMQ_DATA%\tmp -if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=%ACTIVEMQ_CONF%\login.config +if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config="%ACTIVEMQ_CONF%\login.config" if "%ACTIVEMQ_SUNJMX_START%" == "" set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote REM set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false