Jonathan Nieder [off-list ref] writes:
- /^\s*export\s+[^=]*=/ and err '"export FOO=bar" is not por...
+ /\bexport\s+[A-Za-z0-9_]*=/ and err '"export FOO=bar" is n...
I see you also tightened what the "variable" to be assigned should
look like, which is a good change to avoid false positives.
Because the inter-word dash is taken as a word "\b"oundary, that
change incidentally prevents a false positive from triggering on
something like:
git fast-export --option=value
;-)