Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions reflex/utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _zip(
files_to_zip: list[str] = []
# Traverse the root directory in a top-down manner. In this traversal order,
# we can modify the dirs list in-place to remove directories we don't want to include.
for root, dirs, files in os.walk(root_dir, topdown=True):
for root, dirs, files in os.walk(root_dir, topdown=True, followlinks=True):
root = Path(root)
# Modify the dirs in-place so excluded and hidden directories are skipped in next traversal.
dirs[:] = [
Expand Down Expand Up @@ -112,7 +112,6 @@ def _zip(
for file in root_dir.glob(glob)
if file.name not in files_to_exclude
]

# Create a progress bar for zipping the component.
progress = Progress(
*Progress.get_default_columns()[:-1],
Expand Down