Separate object name errors from usage errors
Separate object name errors from usage errors. Signed-off-by: Dmitry V. Levin <ldv@altlinux.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
afb4ff2069
commit
31fff305bc
@ -142,8 +142,8 @@ int main(int argc, const char **argv)
|
||||
|
||||
if (argc < 2)
|
||||
usage(ls_tree_usage);
|
||||
if (get_sha1(argv[1], sha1) < 0)
|
||||
usage(ls_tree_usage);
|
||||
if (get_sha1(argv[1], sha1))
|
||||
die("Not a valid object name %s", argv[1]);
|
||||
|
||||
pathspec = get_pathspec(prefix, argv + 2);
|
||||
tree = parse_tree_indirect(sha1);
|
||||
|
Reference in New Issue
Block a user