diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2012-08-08 09:53:59 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2012-08-08 09:53:59 +0100 |
| commit | 094da81a5bc1b6e9e3eb3aa3f62794c30279f1e9 (patch) | |
| tree | 506cb806f5b4b74f1d2d96b571c11ee433110615 | |
| parent | 03b3b2e2f53031080537577fed4fdc61e9d811af (diff) | |
| download | rabbitmq-server-git-094da81a5bc1b6e9e3eb3aa3f62794c30279f1e9.tar.gz | |
Stop the clocks! Five and a half years into the RabbitMQ project, and Matthias committed something that broke the build.
(Fixed.)
| -rw-r--r-- | src/rabbit_plugins.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl index 0d3dde8c51..4b70a2a54d 100644 --- a/src/rabbit_plugins.erl +++ b/src/rabbit_plugins.erl @@ -130,9 +130,9 @@ prepare_plugins(EnabledFile, PluginsDistDir, ExpandDir) -> [ExpandDir, E]}}) end, case filelib:ensure_dir(ExpandDir ++ "/") of - ok -> ok; - {error, E} -> throw({error, {cannot_create_plugins_expand_dir, - [ExpandDir, E]}}) + ok -> ok; + {error, E2} -> throw({error, {cannot_create_plugins_expand_dir, + [ExpandDir, E2]}}) end, [prepare_plugin(Plugin, ExpandDir) || Plugin <- ToUnpackPlugins]. |
