diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2013-05-21 05:22:43 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2013-05-21 05:22:43 -0700 |
commit | 638569acc2a2947e0e2d8d159b1f8ff9e261a551 (patch) | |
tree | 420c2d3be4a6ced6e9eb750bcb108dc0e1b44e57 /inttest/depplugins/testplugin_mod.erl | |
parent | ae3323728f0cfb79148ca9d5922fec06c640a16f (diff) | |
parent | 252b31f2a4b95670ef75a6a712788af977e869e9 (diff) |
Merge pull request #90 from Motiejus/dep_plugin
Fix searching for plugins
Diffstat (limited to 'inttest/depplugins/testplugin_mod.erl')
-rw-r--r-- | inttest/depplugins/testplugin_mod.erl | 6 |
1 files changed, 6 insertions, 0 deletions
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()]). |