summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@lshift.net>2009-10-29 11:51:42 +0000
committerMatthias Radestock <matthias@lshift.net>2009-10-29 11:51:42 +0000
commitb7cdf2bc5098df216d6f04de00676a8e857307c4 (patch)
tree4c3485ecf8fd151237496529628450db3bc3ee7b
parente13ef6f44f474a22861ce27fac356323b93daaa5 (diff)
downloadrabbitmq-server-git-b7cdf2bc5098df216d6f04de00676a8e857307c4.tar.gz
stop batch from tripping over vars containing parentheses
The root cause was a missing quotation.
-rwxr-xr-xscripts/rabbitmq-service.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rabbitmq-service.bat b/scripts/rabbitmq-service.bat
index bdfc22c054..68b557f13b 100755
--- a/scripts/rabbitmq-service.bat
+++ b/scripts/rabbitmq-service.bat
@@ -69,7 +69,7 @@ if not exist "%ERLANG_SERVICE_MANAGER_PATH%\erlsrv.exe" (
echo ERLANG_SERVICE_MANAGER_PATH not set correctly.
echo **********************************************
echo.
- echo %ERLANG_SERVICE_MANAGER_PATH%\erlsrv.exe not found!
+ echo "%ERLANG_SERVICE_MANAGER_PATH%\erlsrv.exe" not found!
echo Please set ERLANG_SERVICE_MANAGER_PATH to the folder containing "erlsrv.exe".
echo.
exit /B 1