diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2012-08-08 11:14:22 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2012-08-08 11:14:22 +0100 |
| commit | 271e8667a70f68b49b9218290d0b8c665937f134 (patch) | |
| tree | 27c7c09fa1846b1a9d55b4e263ece0695d44730e /src | |
| parent | 094da81a5bc1b6e9e3eb3aa3f62794c30279f1e9 (diff) | |
| download | rabbitmq-server-git-271e8667a70f68b49b9218290d0b8c665937f134.tar.gz | |
Revert the part of 942d5ea3c608 which broke all plugins
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_plugins.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl index 4b70a2a54d..c3d1ad7c61 100644 --- a/src/rabbit_plugins.erl +++ b/src/rabbit_plugins.erl @@ -52,7 +52,7 @@ setup() -> {ok, EnabledFile} = application:get_env(rabbit, enabled_plugins_file), prepare_plugins(EnabledFile, PluginDir, ExpandDir), [prepare_dir_plugin(PluginName) || - PluginName <- filelib:wildcard("*/ebin/*.app", ExpandDir)]. + PluginName <- filelib:wildcard(ExpandDir ++ "/*/ebin/*.app")]. %% @doc Lists the plugins which are currently running. active() -> |
