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 lines
246 B

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