summaryrefslogtreecommitdiff
path: root/inttest/tplugins/test_plugin.erl
blob: 5b8494f1269a0323ae4fec69b639fdb5fcd2a8fc (plain)
1
2
3
4
5
6
7
8
9
-module(test_plugin).

-export([fwibble/2]).

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