Skip to content

Commit b64cc6b

Browse files
committed
Add .venv to default .syncignore values
When using uv (which we are doing more and more), this is _the_ location for virtual environments. We don't want to sync those since they may not match the target machines packages/architecture/...
1 parent d670c7c commit b64cc6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

livesync/folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
class Folder:
16-
DEFAULT_IGNORES = ['.git/', '.jj/', '__pycache__/', '.DS_Store', '*.tmp', '.env']
16+
DEFAULT_IGNORES = ['.git/', '.jj/', '__pycache__/', '.DS_Store', '*.tmp', '.env', '.venv']
1717
DEFAULT_RSYNC_ARGS = ['--prune-empty-dirs', '--delete', '-a', '-v', '-z', '--checksum', '--no-t']
1818

1919
def __init__(self,

0 commit comments

Comments
 (0)