Skip to content

Commit

Permalink
Update make.py
Browse files Browse the repository at this point in the history
  • Loading branch information
phate999 authored Apr 3, 2024
1 parent 51931ce commit deffb65
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ def status():
print(response)

# Create new app from app_template using supplied app name
def create():
app_name = g_app_name
def create(app_name):
if not app_name:
print('Please include new app name. Example: python make.py create my_new_app')
return
Expand Down Expand Up @@ -474,7 +473,7 @@ def init(app=None):
package()

elif utility_name == 'create':
create()
create(option)

elif utility_name == 'status':
status()
Expand Down

0 comments on commit deffb65

Please sign in to comment.