Skip to content

Commit b0f920e

Browse files
committed
fix(spindle-ci): escape Nix interpolation in bash default-value expansion
iter 37 had Nix syntax error — \${FOREST_KPSEDEBUG:-} was parsed as Nix interpolation ${...} (Nix indented strings don't treat \$ as escape for the dollar sign before {). Use the correct escape: ''\${...} = literal ${...} in the output.
1 parent 5652493 commit b0f920e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
export PSHEADERS=".:$actual_dvips_dir/base:$actual_dvips_dir/config:$actual_dvips_dir"
279279
export TEXPSHEADERS="\$PSHEADERS"
280280
export DVIPSHEADERS="\$PSHEADERS"
281-
if [ -n "\${FOREST_KPSEDEBUG:-}" ]; then
281+
if [ -n "''${FOREST_KPSEDEBUG:-}" ]; then
282282
export KPATHSEA_DEBUG=64
283283
fi
284284
exec -a "\$0" "$dvisvgm_bin" "\$@"

0 commit comments

Comments
 (0)