(root: string, message: string)
| 114 | `; |
| 115 | |
| 116 | const commit = (root: string, message: string): string => { |
| 117 | run(root, ["add", "."]); |
| 118 | run(root, ["commit", "-q", "-m", message]); |
| 119 | return run(root, ["rev-parse", "HEAD"]); |
| 120 | }; |
| 121 | |
| 122 | const pack = async (root: string, sha: string, name: string) => { |
| 123 | const proc = Bun.spawnSync({ |