Ver a proveniência

Fix code clarity in bootstrap

pull/3/head
Tuncer Ayaz há 14 anos
ascendente
cometimento
27019e2867
1 ficheiros alterados com 4 adições e 6 eliminações
  1. +4
    -6
      bootstrap

+ 4
- 6
bootstrap Ver ficheiro

@ -19,12 +19,10 @@ main(Args) ->
end,
%% Add check for debug flag
case lists:member("debug", Args) of
true ->
DebugFlag = debug_info;
false ->
DebugFlag = undefined
end,
DebugFlag = case lists:member("debug", Args) of
true -> debug_info;
false -> undefined
end,
%% Compile all src/*.erl to ebin
case make:files(filelib:wildcard("src/*.erl"), [{outdir, "ebin"}, {i, "include"},

Carregando…
Cancelar
Guardar