浏览代码

Fix code clarity

pull/3/head
Tuncer Ayaz 14 年前
父节点
当前提交
0bb429c197
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      src/rebar_otp_app.erl

+ 3
- 3
src/rebar_otp_app.erl 查看文件

@ -39,11 +39,11 @@ compile(Config, File) ->
%% If we get an .app.src file, it needs to be pre-processed and
%% written out as a ebin/*.app file. That resulting file will then
%% be validated as usual.
case rebar_app_utils:is_app_src(File) of
AppFile = case rebar_app_utils:is_app_src(File) of
true ->
AppFile = preprocess(File);
preprocess(File);
false ->
AppFile = File
File
end,
%% Load the app file and validate it.

正在加载...
取消
保存