diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2013-08-06 17:32:49 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2013-08-06 17:32:49 +0100 |
| commit | f7b891f5396e2681f132102e5910d3f5c554ab5b (patch) | |
| tree | 5678ad5ace55581926fb3cfe40dafc5687a456eb /src | |
| parent | 76cb6f9713234136a1873445abbbdbb83f25fda0 (diff) | |
| download | rabbitmq-server-git-f7b891f5396e2681f132102e5910d3f5c554ab5b.tar.gz | |
Fix embarassment perpetrated in 97f0e3842c04.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_misc.erl | 2 |
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, " ")), |
