]> git.ipfire.org Git - thirdparty/git.git/commit
builtin-add: fix unmatched pathspec warnings.
authorJunio C Hamano <junkio@cox.net>
Thu, 18 May 2006 08:29:36 +0000 (01:29 -0700)
committerJunio C Hamano <junkio@cox.net>
Thu, 18 May 2006 08:46:57 +0000 (01:46 -0700)
commite8f990b4e4b56f214138cc475c19e5a253e9148e
tree7586c540fd88618d9ed9b5b7e6927a66cd887155
parentc699f9b924d763b762df932769d91e3d053634a8
builtin-add: fix unmatched pathspec warnings.

"git add Documentation/" when Documentation directory exists
does not barf (as it should not), but "git add ." barfed when it
did not add anything.  This was because we checked for the path
prefix ("Documentation/" in the former case, and an empty string
in the latter case) for existence, and lstat("", &st) would say
"Huh?".

Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-add.c