1
0
Fork 0
mirror of https://github.com/correl/rebar.git synced 2024-12-22 11:09:10 +00:00
rebar/inttest/depplugins/base_dir_cwd_plugin.erl

8 lines
261 B
Erlang
Raw Normal View History

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