Skip to content

Commit 689d18a

Browse files
committed
fix: remove leftover quiet flag remnant breaking install bubbles
1 parent c0e9b22 commit 689d18a

4 files changed

Lines changed: 526 additions & 238 deletions

File tree

omnipkg/core.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3255,13 +3255,13 @@ def smart_install(self, packages: List[str], dry_run: bool=False) -> int:
32553255
replaced_packages_count = len({fix['package'] for fix in all_changes_to_fix})
32563256
print(f" -> Found {replaced_packages_count} package(s) downgraded by pip. Bubbling them to preserve stability...")
32573257

3258-
# Build the hash index only once for efficiency
3259-
main_env_hashes = self.bubble_manager._get_or_build_main_env_hash_index(quiet=True)
3258+
# Build the hash index only once for efficiency - REMOVED quiet=True
3259+
main_env_hashes = self.bubble_manager._get_or_build_main_env_hash_index()
32603260

32613261
for fix in all_changes_to_fix:
3262-
# Call bubble creation in QUIET mode
3262+
# Call bubble creation - REMOVED quiet=True
32633263
bubble_created = self.bubble_manager.create_isolated_bubble(
3264-
fix['package'], fix['new_version'], quiet=True
3264+
fix['package'], fix['new_version']
32653265
)
32663266

32673267
if bubble_created:

0 commit comments

Comments
 (0)