ACCEPTED_PARENT_STEMS

Constant ACCEPTED_PARENT_STEMS 

Source
const ACCEPTED_PARENT_STEMS: &[&str];
Expand description

Exe filenames we accept as “the AgentMux launcher.” Compared case-insensitively after stripping the .exe extension.

  • agentmux-launcher — the Cargo bin name. Used directly in dev (task dev copies target/release/agentmux-launcher.exe into dist/cef-dev/).
  • agentmux — the user-facing name in portable / installed builds. scripts/package-portable.sh copies the launcher to agentmux.exe so the icon the user double-clicks reads as “AgentMux”, not “AgentMux Launcher.” PROCESSENTRY32W.szExeFile returns the on-disk file name, so the parent stem from a production launch is agentmux, not agentmux-launcher — codex P1 on PR #882 round 1 caught this would regress every portable build.