()
| 236 | |
| 237 | |
| 238 | async function defaultTaskExists(): Promise<boolean> { |
| 239 | const res = await execFileUtf8('schtasks', ['/Query', '/TN', KIMI_SERVER_TASK_NAME], { |
| 240 | windowsHide: true, |
| 241 | }); |
| 242 | return res.code === 0; |
| 243 | } |
| 244 | |
| 245 | |
| 246 | function serializeArguments(plan: InstallPlan): string { |
nothing calls this directly
no test coverage detected