51ff4f6e46
* fix: detect desktop runtime without frozen python * chore: drop planning docs from runtime fix pr
11 lines
207 B
Python
11 lines
207 B
Python
import os
|
|
import sys
|
|
|
|
|
|
def is_frozen_runtime() -> bool:
|
|
return bool(getattr(sys, "frozen", False))
|
|
|
|
|
|
def is_packaged_desktop_runtime() -> bool:
|
|
return os.environ.get("ASTRBOT_DESKTOP_CLIENT") == "1"
|