Skip to content

Commit 89874a7

Browse files
committed
Improving finding of interpreter on Alpine.
1 parent 8b99d30 commit 89874a7

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/omnipkg/core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9190,8 +9190,11 @@ def _is_interpreter_directory_valid(self, path: Path) -> bool:
91909190
Checks if a directory contains a valid, runnable Python interpreter structure.
91919191
This is the core of the integrity check.
91929192
"""
9193+
safe_print(f" 🔍 DEBUG: Checking interpreter validity at: {path}")
91939194
if not path.exists():
9195+
safe_print(f" ❌ DEBUG: Path does not exist: {path}")
91949196
return False
9197+
safe_print(f" ✓ DEBUG: Path exists")
91959198
bin_dir = path / "bin"
91969199
if bin_dir.is_dir():
91979200
for name in [

0 commit comments

Comments
 (0)