Skip to content

Commit

Permalink
add missing Masonite prefix in front of package name in multiple places
Browse files Browse the repository at this point in the history
  • Loading branch information
girardinsamuel committed Sep 26, 2020
1 parent 03debdf commit c9cf0d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# {{ cookiecutter.project_name }}
# Masonite {{ cookiecutter.project_name }}

<p align="center">
<img src="https://i.imgur.com/rEXcoMn.png" width="130px">
Expand Down Expand Up @@ -83,7 +83,7 @@ Please read the [Contributing Documentation](CONTRIBUTING.md) here.
## License

{% if cookiecutter.open_source_license == 'Not open source' -%}
{{ cookiecutter.project_name}} is a closed-sourced software.
Masonite {{ cookiecutter.project_name}} is a closed-sourced software.
{% else %}
{{ cookiecutter.project_name}} is open-sourced software licensed under the [{{ cookiecutter.open_source_license }}](LICENSE).
Masonite {{ cookiecutter.project_name}} is open-sourced software licensed under the [{{ cookiecutter.open_source_license }}](LICENSE).
{% endif %}
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/config/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
"""

NAME = '{{cookiecutter.project_name}}'
NAME = 'Masonite {{cookiecutter.project_name}}'

"""
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"masonite.{{ cookiecutter.pkg_name }}.commands",
],
package_dir={"": "src"},
description="{{ cookiecutter.project_name }}",
description="Masonite {{ cookiecutter.project_name }}",
long_description="{{ cookiecutter.project_description }}",
# The project's main homepage.
url="{{ cookiecutter.repository }}",
Expand Down

0 comments on commit c9cf0d5

Please sign in to comment.