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

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