fix(build): escape \${_k} as ''\${_k} in Nix ''...'' string
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:
parent
5b144b6b96
commit
d6de73ed61
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@
|
||||||
}
|
}
|
||||||
print " ) where"
|
print " ) where"
|
||||||
for(i=s;i<=e;i++) print "import " mods[i]
|
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
|
done
|
||||||
|
|
||||||
# Empty stub: Generated.Types is NOT a re-export hub.
|
# Empty stub: Generated.Types is NOT a re-export hub.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue