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 | b7cdf2bc5098df216d6f04de00676a8e857307c4 (patch) | |
| tree | 4c3485ecf8fd151237496529628450db3bc3ee7b /scripts | |
| parent | e13ef6f44f474a22861ce27fac356323b93daaa5 (diff) | |
| download | rabbitmq-server-git-b7cdf2bc5098df216d6f04de00676a8e857307c4.tar.gz | |
stop batch from tripping over vars containing parentheses
The root cause was a missing quotation.
Diffstat (limited to 'scripts')
| -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 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
|
