rename port to omp-pygienium (repo renamed)
Some checks failed
port-to-omp / port (push) Failing after 5s

This commit is contained in:
2026-08-10 15:18:01 -04:00
parent f6f997bb21
commit be76b31a6e
2 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
* port-to-omp.mjs — regenerate the omp port of pygenium from this repo.
*
* The omp port is "base + patch layer"; this script IS the patch layer. This
* repo is the single source of truth; ~/.omp/agent/extensions/pygenium (or
* repo is the single source of truth; ~/.omp/agent/extensions/pygienium (or
* --out) is a generated artifact. Every op asserts its target and fails
* loudly on base drift — never silently producing a stale port.
*
@@ -11,7 +11,7 @@
* bun port-to-omp.mjs # write ~/.omp/agent/extensions/pygenium
* bun port-to-omp.mjs --out <dir> # write elsewhere (CI: the omp repo clone)
*
* CI: .gitea/workflows/port-to-omp.yml clones the omp-pygenium repo and
* CI: .gitea/workflows/port-to-omp.yml clones the omp-pygienium repo and
* runs this script into it, then commits + pushes when the port changed.
*/
@@ -252,7 +252,7 @@ const PYGENIUM_TSCONFIG = `{
// ─── main ───────────────────────────────────────────────────────────────────
const OUT_DEFAULT = join(homedir(), ".omp", "agent", "extensions", "pygenium");
const OUT_DEFAULT = join(homedir(), ".omp", "agent", "extensions", "pygienium");
function portExtension() {
const srcDir = import.meta.dir;