Sign in
apache
/
couchdb-rebar
/
e568e321c6e5acafa4faebd591fe001d6c3e8561
/
.
/
inttest
/
depplugins
/
base_dir_cwd_plugin.erl
blob: 4953b8b74a5bcd406db895c36a1bede01ca34987 [
file
] [
log
] [
blame
]
-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
])
.