You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

7 regels
225 B

-module(testplugin_mod).
-export([pre_compile/2]).
pre_compile(_, _) ->
File = "plugin_pre.compile",
ok = file:write_file(File, <<"Yadda!">>),
rebar_log:log(info, "Wrote ~p/~s~n", [rebar_utils:get_cwd(), File]).