Re: [PATCH] test-lib: avoid full path to store test results
From: Jonathan Nieder <hidden> Date: 2016-06-15 22:55:09
Elia Pinto wrote:
The shell word splitting done in base is a bashism, iow not portable.
No, ${varname##glob} is in POSIX and we already use it here and there.
See Documentation/CodingGuidelines:
- We use ${parameter#word} and its [#%] siblings, and their
doubled "longest matching" form.
Thanks for looking the patch over.
Jonathan