mirror of
https://github.com/dohooo/helmor.git
synced 2026-09-22 16:40:02 +08:00
62739e65f4
* fix: resolve Windows MSI ICE30 by removing duplicate helmor-cli externalBin helmor-cli.exe was packaged into the MSI twice — once via the externalBin entry (./target/bundled/helmor-cli) and once via Tauri auto-bundling the crate's [[bin]] — both landing at the same install path. WiX's light.exe rejected this with ICE30 (two components installing the same file). The .app bundle on macOS tolerates the duplicate, so it went unnoticed. Drop the externalBin CLI entry; Tauri's [[bin]] copy alone satisfies the runtime lookup in agent_invocation_path(). Verified: MSI bundles cleanly (ICE30 gone), wxs has a single helmor_cli component, dev flow unaffected. * test: drop helmor-cli from externalBin assertion The fix removed ./target/bundled/helmor-cli from externalBin, but build-platform.test.js still pinned the 2-entry array, breaking test:frontend. Align the assertion with the single sidecar entry. --------- Co-authored-by: Nathan L <42262146+natllian@users.noreply.github.com> Co-authored-by: Nathan L <liangeqiang@gmail.com>