mirror of
https://github.com/correl/rebar.git
synced 2024-11-24 03:00:14 +00:00
7 lines
205 B
Erlang
7 lines
205 B
Erlang
|
-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()]).
|