From: Tim Henigan Date: Wed, 14 Mar 2012 16:38:06 +0000 (-0400) Subject: contrib/diffall: fix cleanup trap on Windows X-Git-Tag: v1.7.10-rc2~11^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bfe392e3674770e8a0312d4945b0a5f2c9007eab;p=git.git contrib/diffall: fix cleanup trap on Windows Prior to this commit, the cleanup trap that removes the tmp dir created by the script would fail on Windows. The error was silently ignored by the script. On Windows, a directory cannot be removed while it is the working directory of the process (thanks to Johannes Sixt on the Git list for this info [1]). This commit eliminates the 'cd' into the tmp directory that caused the error. [1]: http://article.gmane.org/gmane.comp.version-control.git/193086 Signed-off-by: Tim Henigan Signed-off-by: Junio C Hamano --- diff --git a/contrib/diffall/git-diffall b/contrib/diffall/git-diffall index 91a31c878..84f2b654d 100755 --- a/contrib/diffall/git-diffall +++ b/contrib/diffall/git-diffall @@ -49,7 +49,7 @@ cd "$cdup" || { tmp=$(perl -e 'use File::Temp qw(tempdir); $t=tempdir("/tmp/git-diffall.XXXXX") or exit(1); print $t') || exit 1 -trap 'rm -rf "$tmp" 2>/dev/null' EXIT +trap 'rm -rf "$tmp"' EXIT left= right= @@ -233,9 +233,8 @@ do fi done < "$tmp/filelist" -cd "$tmp" -LOCAL="$left_dir" -REMOTE="$right_dir" +LOCAL="$tmp/$left_dir" +REMOTE="$tmp/$right_dir" if test -n "$diff_tool" then