mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
8 lines
194 B
Erlang
8 lines
194 B
Erlang
|
|
-record(global_state, { working_dir }).
|
|
|
|
-define(CONSOLE(Str, Args), io:format(Str, Args)).
|
|
-define(WARN(Str, Args), io:format("WARN: " ++ Str, Args)).
|
|
|
|
-define(FAIL, throw({error, failed})).
|
|
|