Re: [PATCH v2 01/10] t: add helper to convert object IDs to paths
From: Johannes Sixt <hidden>
Date: 2019-06-18 06:58:23
Am 18.06.19 um 03:29 schrieb brian m. carlson:
On 2019-06-17 at 19:05:03, Johannes Schindelin wrote:quoted
I guess it does not *really* matter all that much, but this does spawn a new process (and I think it actually spawns 4 on Windows, for reasons, and spawning processes is super expensive on Windows). We might actually want to think about using something like this instead (which admittedly looks a bit like gobbledygook to the uninitiated, but it definitely avoids any spawned process): test_oid_to_path () { echo "${1%${1#??}}/${1#??}" }I'm fine making that change. The original design was because we had other code that used that technique and I didn't see an obviously better solution. Now you've provided one and a good justification.
Regardless of how it is implemented, I have another gripe with this helper: the way it must be used requires a process: $(test_out_to_path $foo) And looking through this patch series, I see a gazillion of *new* process substitutions $(test_something...) and $(basename $whatever). Can't we do something about it? -- Hannes