diff options
| author | Fred Hebert <mononcqc@ferd.ca> | 2017-05-14 14:29:19 -0400 | 
|---|---|---|
| committer | Fred Hebert <mononcqc@ferd.ca> | 2017-05-14 14:29:19 -0400 | 
| commit | ab63030cd7c3a4ab8043ee3eaf3489b83a3a38bd (patch) | |
| tree | 8bb898e1d58e7b7e0d1777bb223d125a0566c1d7 | |
| parent | 643a4b214c6842d43b9ed7ca9f12d247743e74ed (diff) | |
Match template license app to default license
The default license created with rebar3 templates is a BSD 3 clause
license. However the .app.src file generated do not include the license
there.
This adds the license type, fixing #1447.
| -rw-r--r-- | priv/templates/otp_app.app.src | 2 | ||||
| -rw-r--r-- | priv/templates/otp_lib.app.src | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/priv/templates/otp_app.app.src b/priv/templates/otp_app.app.src index c18f82c..1f6a818 100644 --- a/priv/templates/otp_app.app.src +++ b/priv/templates/otp_app.app.src @@ -11,6 +11,6 @@    {modules, []},    {maintainers, []}, -  {licenses, []}, +  {licenses, ["BSD"]},    {links, []}   ]}. diff --git a/priv/templates/otp_lib.app.src b/priv/templates/otp_lib.app.src index 5b98a51..56ef8ad 100644 --- a/priv/templates/otp_lib.app.src +++ b/priv/templates/otp_lib.app.src @@ -10,6 +10,6 @@    {modules, []},    {maintainers, []}, -  {licenses, []}, +  {licenses, ["BSD"]},    {links, []}   ]}. | 
