Tim Henigan <tim.henigan@xxxxxxxxx> writes: > +sub setup_dir_diff > +{ > + # Run the diff; exit immediately if no diff found > + my $cmd = "git diff --raw --no-abbrev -z " . join(" ", @ARGV); > + my $diffrtn = `$cmd` or die $!; Why this change? It looks like a rather unpleasant regression compared to the previous one that used "command_oneline", so that each element of @ARGV was given as a single argument to the command. Now, you are splitting any argument that has $IFS in it. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html