summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-08-06 17:33:09 +0100
committerSimon MacMullen <simon@rabbitmq.com>2013-08-06 17:33:09 +0100
commit7ad66d0caf1ea3abf7e7345b4fca04ae64a78770 (patch)
treea749fd33cb7744b1bb182a6a6ea54960fa5d47d3 /src
parente99bb3ea4832648f5b613b9f19a895a7edd161f6 (diff)
parentf7b891f5396e2681f132102e5910d3f5c554ab5b (diff)
downloadrabbitmq-server-git-7ad66d0caf1ea3abf7e7345b4fca04ae64a78770.tar.gz
Merge bug25689 (again)rabbitmq_v3_1_4
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 e9fe81341d..bca9d5ce75 100644
--- a/src/rabbit_misc.erl
+++ b/src/rabbit_misc.erl
@@ -975,7 +975,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, " ")),