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 | 19a6b8aa175df24c3262b64f040a174fea1839e0 (patch) | |
tree | 27c7c09fa1846b1a9d55b4e263ece0695d44730e | |
parent | 2a37bc5af6a663724d2e1187e48299142a6798d2 (diff) | |
download | rabbitmq-server-19a6b8aa175df24c3262b64f040a174fea1839e0.tar.gz |
Revert the part of 942d5ea3c608 which broke all plugins
-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 4b70a2a5..c3d1ad7c 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() -> |