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