()
| 201 | } |
| 202 | |
| 203 | func copilotBinaryPath() string { |
| 204 | binaryName := copilotBinaryName |
| 205 | if runtime.GOOS == "windows" { |
| 206 | binaryName += ".exe" |
| 207 | } |
| 208 | return filepath.Join(copilotInstallDir(), binaryName) |
| 209 | } |
| 210 | |
| 211 | var runExternalCmdFunc = runExternalCmd |
| 212 |
no test coverage detected