summaryrefslogtreecommitdiff
path: root/inttest/tplugins/test_plugin.erl
blob: 461247ccaaba92379e2780ddf2982f6248bb4baa (plain)
1
2
3
4
5
6
7
8
-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").