fix(build): escape \${_k} as ''\${_k} in Nix ''...'' string
Some checks failed
Build and Deploy / build-push-deploy (push) Has been cancelled

Nix ''...'' strings interpolate \${...} — use ''$ to produce a literal
dollar sign so bash sees TypesPart\${_k}.hs not Nix interpolation.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-30 23:20:14 +02:00
parent 5b144b6b96
commit d6de73ed61

View File

@@ -135,7 +135,7 @@
}
print " ) where"
for(i=s;i<=e;i++) print "import " mods[i]
}' "$_types" > "$sourceRoot/build/Generated/TypesPart${_k}.hs"
}' "$_types" > "$sourceRoot/build/Generated/TypesPart''${_k}.hs"
done
# Empty stub: Generated.Types is NOT a re-export hub.