diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2008-12-05 01:36:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-12-04 18:05:51 -0800 |
commit | 7be77de266b5cbcbd28d69a04df6f0b167b87cf6 (patch) | |
tree | f2c82df15cb22f28dd31f427dccbf9d608fbc44b | |
parent | Make some of fwrite/fclose/write/close failures visible (diff) | |
download | tgif-7be77de266b5cbcbd28d69a04df6f0b167b87cf6.tar.xz |
Make chdir failures visible
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | git.c | 4 | ||||
-rw-r--r-- | setup.c | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -195,8 +195,8 @@ static int handle_alias(int *argcp, const char ***argv) ret = 1; } - if (subdir) - chdir(subdir); + if (subdir && chdir(subdir)) + die("Cannot change to %s: %s", subdir, strerror(errno)); errno = saved_errno; @@ -470,7 +470,8 @@ const char *setup_git_directory_gently(int *nongit_ok) } die("Not a git repository"); } - chdir(".."); + if (chdir("..")) + die("Cannot change to %s/..: %s", cwd, strerror(errno)); } inside_git_dir = 0; |