Open
Description
In bash, we don't properly support strings. For example:
commit_message="$(git log -1 --pretty=format:"%s" HEAD)"
This is actually two nested strings: "$(git log -1 --pretty=format:"%s" HEAD)"
and "%s"
. Instead we treat it as two strings in sequence: "$(git log -1 --pretty=format:"
and " HEAD)"
. We should figure out how to make this work, probably using the parse tree, and/or some flavour of #1812 (comment)
Metadata
Metadata
Assignees
Labels
No labels