I want to use jb cleanupcode --include .\file1;.\file2 to only format code that has changed.
I.e. I want to run git diff --name-only and then feed the output to the jb cleanupcode command using its --include flag.
The issue is that git diff --name-only produces a list of files one-per-line.
Question: how do I take a stream of path-per-file and turn it into a semicolon-separated list fed to a command?