瀏覽代碼

Fix error where ebin was created as a file

This patch remedies an issue where the ebin directory would be
erroneously created as a file by the first "mv" command in
rebar_protobuffs_compile.erl [line 106] if the ebin file did not
exist at the root application level.

In essence, the patch ensures that the ebin directory exists at
the application directory level before any "mv" commands are
executed. The following code was inserted at line 106:

    ok = filelib:ensure_dir(filename:join("ebin","dummy")),
pull/3/head
Charles McKnight 14 年之前
committed by Tuncer Ayaz
父節點
當前提交
f83f18eb3b
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      src/rebar_protobuffs_compiler.erl

+ 1
- 0
src/rebar_protobuffs_compiler.erl 查看文件

@ -103,6 +103,7 @@ compile_each([{Proto, Beam, Hrl} | Rest]) ->
%% Compilation worked, but we need to move the .beam and .hrl file
%% into the ebin/ and include/ directories respectively
%% TODO: Protobuffs really needs to be better about this...sigh.
ok = filelib:ensure_dir(filename:join("ebin","dummy")),
[] = os:cmd(?FMT("mv ~s ebin", [Beam])),
ok = filelib:ensure_dir(filename:join("include", Hrl)),
[] = os:cmd(?FMT("mv ~s include", [Hrl])),

Loading…
取消
儲存