Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
78 contributions in the last year
Contribution activity
November 2020
Created an issue in mvdan/sh that received 4 comments
syntax: parser endless loop with single quotes in parameter expansion replaces
The following will cause 3.2 to go into an endless loop:
foo="${foo/'{eo}'/$bar}"
With shfmt 3.1.2-1 it prints:
foo="${foo/'{eo/}'/$bar}"
{eo} was …