(outputPath)
| 451 | } |
| 452 | |
| 453 | async function buildGoServer(outputPath) { |
| 454 | await run('go', ['build', '-trimpath', '-o', outputPath, './cmd/zennotes-server'], { |
| 455 | cwd: serverRoot, |
| 456 | env: withGoEnv() |
| 457 | }) |
| 458 | } |
| 459 | |
| 460 | function percentile(values, p) { |
| 461 | if (values.length === 0) return 0 |