Skip to content

Commit

Permalink
fix crash upon ctrl + c
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Sep 28, 2024
1 parent e6872af commit b3fb48a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion robyn/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,7 @@ def run():
print("Starting dev server...")
start_dev_server(config, config.file_path)
else:
start_app_normally(config)
try:
start_app_normally(config)
except KeyboardInterrupt:
pass

0 comments on commit b3fb48a

Please sign in to comment.