Browse Source

add no interactive back (#5191)

Khaleel Al-Adhami 3 weeks ago
parent
commit
48b405a1ef
1 changed files with 2 additions and 1 deletions
  1. 2 1
      reflex/reflex.py

+ 2 - 1
reflex/reflex.py

@@ -354,6 +354,7 @@ def run(
 @click.option(
 @click.option(
     "--zip/--no-zip",
     "--zip/--no-zip",
     default=True,
     default=True,
+    is_flag=True,
     help="Whether to zip the backend and frontend exports.",
     help="Whether to zip the backend and frontend exports.",
 )
 )
 @click.option(
 @click.option(
@@ -569,7 +570,7 @@ def makemigrations(message: str | None):
     help="The hostname of the frontend.",
     help="The hostname of the frontend.",
 )
 )
 @click.option(
 @click.option(
-    "--interactive",
+    "--interactive/--no-interactive",
     is_flag=True,
     is_flag=True,
     default=True,
     default=True,
     help="Whether to list configuration options and ask for confirmation.",
     help="Whether to list configuration options and ask for confirmation.",