()
| 347 | } |
| 348 | |
| 349 | func ClientPackageType() string { |
| 350 | if os.Getenv("SNAP") != "" { |
| 351 | return "snap" |
| 352 | } |
| 353 | if os.Getenv("APPIMAGE") != "" { |
| 354 | return "appimage" |
| 355 | } |
| 356 | return "" |
| 357 | } |
| 358 | |
| 359 | var macOSVersionOnce = &sync.Once{} |
| 360 | var cachedMacOSVersion string |
no outgoing calls
no test coverage detected