Step 0 of Make-a-Lisp for Erlang
[jackhill/mal.git] / erlang / rebar.config.script
CommitLineData
2cc3804b
NF
1%%
2%% rebar dynamic configuration file
3%% (https://github.com/rebar/rebar/wiki/Dynamic-configuration)
4%%
5
6case os:getenv("MAL_STEP") of
7 false -> CONFIG; % env var not defined
8 [] -> CONFIG; % env var set to empty string
9 Step -> CONFIG ++ [{escript_name, Step}]
10end.