mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
9 lines
282 B
Erlang
9 lines
282 B
Erlang
|
-module(test_plugin).
|
||
|
-compile(export_all).
|
||
|
|
||
|
fwibble(Config, _) ->
|
||
|
Pwd = rebar_utils:get_cwd(),
|
||
|
Ok = filelib:is_regular(filename:join(Pwd, "fwibble.test")),
|
||
|
rebar_log:log(info, "~p:~p in ~s :: ~p~n", [test_plugin, clean, Pwd, Ok]),
|
||
|
ok = file:delete("fwibble.test").
|