diff options
| author | Jared Kauppila <Jared@Kauppi.la> | 2015-07-29 11:37:42 -0500 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2015-07-29 22:14:54 +0300 |
| commit | 374901966f8aa6262bed374b55b844ded2eccf21 (patch) | |
| tree | 9e229a0e4885297ec126ec361e3e02a31a8c6d60 | |
| parent | 77052f42d1389caedff1f4febdb384a81535d49b (diff) | |
| download | rabbitmq-server-git-374901966f8aa6262bed374b55b844ded2eccf21.tar.gz | |
Adding quotes to the !RABBITMQ_CONF_ENV_FILE! call
Added quotes around the call for the !RABBITMQ_CONF_ENV_FILE! file.
| -rw-r--r-- | scripts/rabbitmq-env.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rabbitmq-env.bat b/scripts/rabbitmq-env.bat index 8657f1e609..604260a0e4 100644 --- a/scripts/rabbitmq-env.bat +++ b/scripts/rabbitmq-env.bat @@ -35,7 +35,7 @@ REM set SERVER_ERL_ARGS=+P 1048576 REM ## Get configuration variables from the configure environment file REM [ -f ${CONF_ENV_FILE} ] && . ${CONF_ENV_FILE} || true if exist "!RABBITMQ_CONF_ENV_FILE!" ( - call !RABBITMQ_CONF_ENV_FILE! + call "!RABBITMQ_CONF_ENV_FILE!" ) REM Check for the short names here too |
