Parcourir la source

add no interactive back (#5191)

Khaleel Al-Adhami il y a 1 mois
Parent
commit
48b405a1ef
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      reflex/reflex.py

+ 2 - 1
reflex/reflex.py

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