返回 DeepSeek-Reasonix
updater_install_other.go
根目录 / desktop / updater_install_other.go
1 //go:build !linux
2
3 package main
4
5 // detectLinuxInstallProfile is a stub on non-Linux platforms; detectInstallProfile
6 // never calls it outside the linux build tag, but the shared file references the
7 // name in comments only. Keep a no-op for documentation parity.
8 func detectLinuxInstallProfile() installProfile {
9 return installProfile{
10 Mode: installModeManual,
11 CanSelfUpdate: false,
12 ManualReason: "Linux install detection is unavailable on this platform",
13 }
14 }
15
15 lines GO