Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

7 rader
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]).