mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
7 lines
261 B
Erlang
7 lines
261 B
Erlang
-module(base_dir_cwd_plugin).
|
|
-export([pre_compile/2]).
|
|
|
|
pre_compile(_, _) ->
|
|
File = "base_dir_cwd_pre.compile",
|
|
ok = file:write_file(File, <<"base_dir cwd pre_compile plugin">>),
|
|
rebar_log:log(info, "Wrote ~p/~s~n", [rebar_utils:get_cwd(), File]).
|