Disable brace expansion inside heredocs (#147)
/bin/bash does not perform brace expansion on heredoc content:
$ /bin/bash -c 'cat <<EOF
{a,b}
EOF'
{a,b}
Without this fix, just-bash produces "a b" — the brace expansion
result. This corrupts any heredoc containing JSON or similar
brace-and-comma content. J
Julian Scheid committed
bff9441db6806f79157e13c3a2ccea5ed091d10a
Parent: 9fdca27
Committed by GitHub <noreply@github.com>
on 3/12/2026, 2:17:13 PM