mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Fix code clarity in bootstrap
This commit is contained in:
parent
ebcae06928
commit
27019e2867
1 changed files with 4 additions and 6 deletions
|
@ -19,11 +19,9 @@ main(Args) ->
|
||||||
end,
|
end,
|
||||||
|
|
||||||
%% Add check for debug flag
|
%% Add check for debug flag
|
||||||
case lists:member("debug", Args) of
|
DebugFlag = case lists:member("debug", Args) of
|
||||||
true ->
|
true -> debug_info;
|
||||||
DebugFlag = debug_info;
|
false -> undefined
|
||||||
false ->
|
|
||||||
DebugFlag = undefined
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
%% Compile all src/*.erl to ebin
|
%% Compile all src/*.erl to ebin
|
||||||
|
|
Loading…
Reference in a new issue