Hi Luke, On Thu, 10 Jun 2021, Luke Shumaker wrote: > On Thu, 10 Jun 2021 03:13:31 -0600, > Johannes Schindelin via GitGitGadget wrote: > > > > From: Johannes Schindelin <johannes.schindelin@xxxxxx> > > > > On Windows, both forward and backslash are valid separators. In > > 22d550749361 (subtree: don't fuss with PATH, 2021-04-27), however, we > > added code that assumes that it can only be the forward slash. > > > > Let's fix that. > > > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > > --- > > contrib/subtree/git-subtree.sh | 8 +++++--- > > 1 file changed, 5 insertions(+), 3 deletions(-) > > > > diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh > > index 6bd689a6bb92..d11ac56f9eb8 100755 > > --- a/contrib/subtree/git-subtree.sh > > +++ b/contrib/subtree/git-subtree.sh > > @@ -13,6 +13,8 @@ if test -z "$GIT_EXEC_PATH" || { > > } > > } || ! test -f "$GIT_EXEC_PATH/git-sh-setup" > > then > > + base=${0##*/} > > + base=${base##*\\} > > This might be more clearly written as > > base=${0##*[/\\]} > > ? True. For some reason, this did not work in my tests (probably because I confused `#` with `%` or put the wildcard on the wrong side, or something). Will fix. > (And then maybe it doesn't need a separate variable, and can still be > written in-line?) I am not in favor of inlining here. Three times. It is too complicated a construct for a casual contributor. At least giving it a name (where "basename" would make even more sense than "base", I just realized) alleviates this problem _somewhat_. Ciao, Dscho