Re: [PATCH] repack: find -> /usr/bin/find, as for cygwin
From: ryenus ◇ <hidden>
Date: 2016-06-15 22:50:49
OK, I've been away for a while and didn't notice latest replies :-) do you mean find is not used elsewhere in git? Anyway, looks like checking for both MinGW and Cygwin still applies. Thanks On Sun, Mar 20, 2011 at 00:32, ryenus ◇ [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Thank you, Duy, you're almost right, I just checked git-sh-setup.sh, in the bottom, sort and find are defined as functions like what you pointed out, but only for MinGW, therefore a better fix is to check for cygwin as well: --- git-sh-setup.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)diff --git a/git-sh-setup.sh b/git-sh-setup.sh index aa16b83..5c52ae4 100644 --- a/git-sh-setup.sh +++ b/git-sh-setup.sh@@ -227,7 +227,7 @@ fi# Fix some commands on Windows case $(uname -s) in -*MINGW*) +*MINGW*|*CYGWIN*) # Windows has its own (incompatible) sort and find sort () { /usr/bin/sort "$@" -- 1.7.4