There was an error while loading. Please reload this page.
This fixes #35
Note, that this is still far from an SH-compatible parser, but this at least fixes this particular issue.
To be an SH-compatible parser, these kinds of things would have to be fixed:
HELLO=WORLD
HELLO= WORLD
HELLO=${WORLD}
HELLO='${WORLD}'
Sorry, something went wrong.
Make it clearer what --quote does
3900387
Add test
a2096aa
Coverage remained the same at 82.418% when pulling a2096aa on Flimm:naive-single-quotes into 9552db8 on theskumar:master.
This fixes #35
Note, that this is still far from an SH-compatible parser, but this at least fixes this particular issue.
To be an SH-compatible parser, these kinds of things would have to be fixed:
HELLO=WORLDshoud be treated differently fromHELLO= WORLDHELLO=${WORLD}should be treated differently fromHELLO='${WORLD}'