From d76f34bfa71c438efec0aadf37482dea6360968a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 9 Oct 2016 22:08:01 +0100 Subject: [PATCH] dgit: Get sense of failed clone failed cleanup error reporting check correct. Closes:#796773. Signed-off-by: Ian Jackson --- debian/changelog | 2 ++ dgit | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e4f2630c..9c52188c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -92,6 +92,8 @@ dgit (1.5~~) unstable; urgency=medium etc. Closes:#827892. * Allow local git config options to override user-global ones, as is proper. Closes:#835858. + * Get sense of failed clone failed cleanup error reporting check + correct. Closes:#796773. Test suite: * When sbuild fails, do not crash due to sed not finding the log diff --git a/dgit b/dgit index b695905c..7b16ff3f 100755 --- a/dgit +++ b/dgit @@ -3381,7 +3381,7 @@ sub cmd_clone { } if (stat $dstdir) { rmtree($dstdir) or die "remove $dstdir: $!\n"; - } elsif (!grep { $! == $_ } + } elsif (grep { $! == $_ } (ENOENT, ENOTDIR, EACCES, EPERM, ELOOP)) { } else { print STDERR "check whether to remove $dstdir: $!\n"; -- 2.30.2