From 252b31f2a4b95670ef75a6a712788af977e869e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 15 May 2013 23:56:45 +0100 Subject: Fix searching for plugins If a plugin is in a dependency, rebar didn't search for it carefully enough. --- inttest/depplugins/testplugin_mod.erl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 inttest/depplugins/testplugin_mod.erl (limited to 'inttest/depplugins/testplugin_mod.erl') diff --git a/inttest/depplugins/testplugin_mod.erl b/inttest/depplugins/testplugin_mod.erl new file mode 100644 index 0000000..055bbc7 --- /dev/null +++ b/inttest/depplugins/testplugin_mod.erl @@ -0,0 +1,6 @@ +-module(testplugin_mod). +-compile(export_all). + +pre_compile(Config, _) -> + ok = file:write_file("pre.compile", <<"Yadda!">>), + rebar_log:log(info, "Wrote ~p/pre.compile~n", [rebar_utils:get_cwd()]). -- cgit v1.1