浏览代码

Fix code clarity in bootstrap

pull/3/head
Tuncer Ayaz 14 年前
父节点
当前提交
27019e2867
共有 1 个文件被更改,包括 4 次插入6 次删除
  1. +4
    -6
      bootstrap

+ 4
- 6
bootstrap 查看文件

@ -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"},

正在加载...
取消
保存