pull-debian-debdiff: Don't unpack the older source package, it will often use the same directory as the newer one, and break.

This commit is contained in:
Stefano Rivera 2019-09-04 15:48:51 -03:00
parent 366ff25690
commit 2138919700
2 changed files with 7 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ubuntu-dev-tools (0.173) UNRELEASED; urgency=medium
* pull-debian-debdiff: Don't unpack the older source package, it will often
use the same directory as the newer one, and break.
-- Stefano Rivera <stefanor@debian.org> Wed, 04 Sep 2019 16:31:28 -0300
ubuntu-dev-tools (0.172) unstable; urgency=medium
[ Mattia Rizzolo ]

View File

@ -104,7 +104,6 @@ def main():
except DownloadError, e:
Logger.error('Failed to download: %s', str(e))
sys.exit(1)
oldpkg.unpack()
print 'file://' + oldpkg.debdiff(newpkg, diffstat=True)