From 228aeaf2fdf0205294825a40c6752b2c8abf6d7a Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Fri, 16 Dec 2022 17:34:26 +0530
Subject: [PATCH] fix: print help when no args passed
[skip ci]
---
easy-install.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/easy-install.py b/easy-install.py
index 82fc17385..26d5ab720 100755
--- a/easy-install.py
+++ b/easy-install.py
@@ -318,3 +318,5 @@ def install_docker():
cprint("Emails with example.com not acceptable", level=1)
sys.exit(1)
setup_prod(args.project, args.sitename, args.email)
+ else:
+ parser.print_help()