summaryrefslogtreecommitdiff
path: root/src
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
commitf7b891f5396e2681f132102e5910d3f5c554ab5b (patch)
tree5678ad5ace55581926fb3cfe40dafc5687a456eb /src
parent76cb6f9713234136a1873445abbbdbb83f25fda0 (diff)
downloadrabbitmq-server-git-f7b891f5396e2681f132102e5910d3f5c554ab5b.tar.gz
Fix embarassment perpetrated in 97f0e3842c04.
Diffstat (limited to 'src')
-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 ce7d73c7bc..4db2521307 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, " ")),