summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-08-06 17:32:49 +0100
committerSimon MacMullen <simon@rabbitmq.com>2013-08-06 17:32:49 +0100
commite8a80d836fbe0641f989baf9a8c7c2bc810ff1b5 (patch)
tree5678ad5ace55581926fb3cfe40dafc5687a456eb
parent5d75c6e30b01b0129cca3c43775a7706565a061d (diff)
downloadrabbitmq-server-bug25689.tar.gz
Fix embarassment perpetrated in 97f0e3842c04.bug25689
-rw-r--r--src/rabbit_misc.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_misc.erl b/src/rabbit_misc.erl
index ce7d73c7..4db25213 100644
--- a/src/rabbit_misc.erl
+++ b/src/rabbit_misc.erl
@@ -977,7 +977,7 @@ os_cmd(Command) ->
{win32, _} ->
%% Clink workaround; see
%% http://code.google.com/p/clink/issues/detail?id=141
- os:cmd(" " + Command);
+ os:cmd(" " ++ Command);
_ ->
%% Don't just return "/bin/sh: <cmd>: not found" if not found
Exec = hd(string:tokens(Command, " ")),