From: Zac Medico Date: Fri, 13 Apr 2012 19:30:40 +0000 (-0700) Subject: EbuildBinpkg: remove temp file on failure X-Git-Tag: v2.2.0_alpha101~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=54597d1ce55bd3d67c22a1cc5c7e915a02406477;p=portage.git EbuildBinpkg: remove temp file on failure --- diff --git a/pym/_emerge/EbuildBinpkg.py b/pym/_emerge/EbuildBinpkg.py index b7d43ba82..34a6aef9c 100644 --- a/pym/_emerge/EbuildBinpkg.py +++ b/pym/_emerge/EbuildBinpkg.py @@ -1,4 +1,4 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 from _emerge.CompositeTask import CompositeTask @@ -34,6 +34,10 @@ class EbuildBinpkg(CompositeTask): self.settings.pop("PORTAGE_BINPKG_TMPFILE", None) if self._default_exit(package_phase) != os.EX_OK: + try: + os.unlink(self._binpkg_tmpfile) + except OSError: + pass self.wait() return