Skip to content

Commit

Permalink
Merge pull request #466 from MasoniteFramework/fix/install
Browse files Browse the repository at this point in the history
flipped project comamnd
  • Loading branch information
josephmancuso authored Dec 24, 2021
2 parents 447f682 + 9cd9e01 commit 5bc5fe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version="4.0.0",
version="4.0.1",
package_dir={"": "src"},
description="The Masonite Framework",
long_description=long_description,
Expand Down Expand Up @@ -187,7 +187,7 @@
# pip to create the appropriate form of executable for the target platform.
entry_points={
"console_scripts": [
"start = masonite.commands.Entry:application.run",
"project = masonite.commands.Entry:application.run",
],
},
)
2 changes: 1 addition & 1 deletion src/masonite/commands/ProjectCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ProjectCommand(Command):
"""
Creates a new Masonite project
project
start
{target? : Path of you Masonite project}
{--b|--branch=False : Specify which branch from the Masonite repo you would like to install}
{--r|--release=False : Specify which version of Masonite you would like to install}
Expand Down

0 comments on commit 5bc5fe2

Please sign in to comment.