We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72babd commit ca780bbCopy full SHA for ca780bb
1 file changed
pydeej.py
@@ -312,9 +312,14 @@ def get_config_path(default):
312
bundle_dir = Path(sys._MEIPASS)
313
bundled = bundle_dir / p.name
314
local = exe_dir / p.name
315
+ print(f"[DEBUG] exe_dir: {exe_dir}")
316
+ print(f"[DEBUG] bundle_dir: {bundle_dir}")
317
+ print(f"[DEBUG] bundled config exists: {bundled.exists()}")
318
+ print(f"[DEBUG] local config exists: {local.exists()}")
319
if local.exists():
320
return str(local)
321
if bundled.exists():
322
+ print(f"[DEBUG] Copying bundled config to {local}")
323
local.write_bytes(bundled.read_bytes())
324
325
elif not p.is_absolute():
0 commit comments