Skip to content

Commit 93e9e39

Browse files
authored
fix condition for creating requirements.txt (#2260)
1 parent e0a1b39 commit 93e9e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reflex/reflex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,8 @@ def deploy(
483483
# Set the log level.
484484
console.set_log_level(loglevel)
485485

486-
# Only check requirements if not interactive. There is user interaction for requirements update.
487-
if not interactive:
486+
# Only check requirements if interactive. There is user interaction for requirements update.
487+
if interactive:
488488
dependency.check_requirements()
489489

490490
# Check if we are set up.

0 commit comments

Comments
 (0)