//go:build !windows package main // bundled_collector_other.go — 非 Windows 平台不內嵌 collector。 // // macOS 走 .app bundle:collector 就放在 Contents/MacOS/ 裡,對使用者而言 // **本來就只有一個可拖曳的東西**(Arcrun.app),沒有「兩個檔很迷惑」的問題。 // 所以只有 Windows 需要把 collector 收進單一 exe(見 bundled_collector_windows.go)。 // bundledCollectorPath 回空字串=沒有內嵌版,呼叫端退回「找同層」。 func bundledCollectorPath() string { return "" }