We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b99d30 commit 89874a7Copy full SHA for 89874a7
1 file changed
src/omnipkg/core.py
@@ -9190,8 +9190,11 @@ def _is_interpreter_directory_valid(self, path: Path) -> bool:
9190
Checks if a directory contains a valid, runnable Python interpreter structure.
9191
This is the core of the integrity check.
9192
"""
9193
+ safe_print(f" 🔍 DEBUG: Checking interpreter validity at: {path}")
9194
if not path.exists():
9195
+ safe_print(f" ❌ DEBUG: Path does not exist: {path}")
9196
return False
9197
+ safe_print(f" ✓ DEBUG: Path exists")
9198
bin_dir = path / "bin"
9199
if bin_dir.is_dir():
9200
for name in [
0 commit comments