Skip to content

Commit fe797f3

Browse files
author
Olivier Bonnaure
committedMar 14, 2024
fix: remove debug print
1 parent a4b2049 commit fe797f3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎beans.lua

-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ CreateModel = function(model_name)
9191
end
9292

9393
if arg[1] == "create" then
94-
print("create")
9594
if arg[2] == "migration" then
9695
CreateMigration(arg[3])
9796
end
@@ -105,9 +104,7 @@ if arg[1] == "create" then
105104
end
106105

107106
if arg[2] == "scaffold" then
108-
print("scaffold")
109107
singular = Singularize(arg[3])
110-
print(singular)
111108
CreateController(singular)
112109
CreateView(singular)
113110
CreateModel(singular)

0 commit comments

Comments
 (0)
Please sign in to comment.