diff options
author | Muromi Ukari <chendianbuji@gmail.com> | 2016-09-13 23:37:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 23:37:43 +0900 |
commit | f1a8fddea28ac2ee0d5e9e4cc4d2a29c8dddf530 (patch) | |
tree | c5d2f35861585258fe008393262c59f4b6400a1e | |
parent | de9da673317a6d720bc24b14d91ed9b86a9bff98 (diff) | |
download | gitignore-f1a8fddea28ac2ee0d5e9e4cc4d2a29c8dddf530.tar.gz gitignore-f1a8fddea28ac2ee0d5e9e4cc4d2a29c8dddf530.zip |
Update Erlang.gitignore
/ebin can't be simply ignored because *.app should be put here.
[Erlang Applications](http://erlang.org/doc/design_principles/applications.html)
> 8.4 Directory Structure
> ebin - Contains the Erlang object code, the beam files. The .app file is also placed here.
-rw-r--r-- | Erlang.gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Erlang.gitignore b/Erlang.gitignore index 8e46d5a0..3826c857 100644 --- a/Erlang.gitignore +++ b/Erlang.gitignore @@ -4,7 +4,7 @@ deps *.beam *.plt erl_crash.dump -ebin +ebin/*.beam rel/example_project .concrete/DEV_MODE .rebar |