diff options
author | Matthias Radestock <matthias@lshift.net> | 2009-10-29 11:51:42 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@lshift.net> | 2009-10-29 11:51:42 +0000 |
commit | c00e5d2995c07c66c870f45792557f468c28ec79 (patch) | |
tree | 4c3485ecf8fd151237496529628450db3bc3ee7b | |
parent | 1291cc279c5cbddc499c762fe46142fb3c885560 (diff) | |
download | rabbitmq-server-bug21804.tar.gz |
stop batch from tripping over vars containing parenthesesbug21804
The root cause was a missing quotation.
-rwxr-xr-x | scripts/rabbitmq-service.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rabbitmq-service.bat b/scripts/rabbitmq-service.bat index bdfc22c0..68b557f1 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
|