Commit 3b128565 authored by Julien Muchembled's avatar Julien Muchembled

More reliable cleanup of temporary downloaded file

parent 6b76cb03
Pipeline #17510 passed with stage
in 0 seconds
...@@ -165,13 +165,14 @@ class Recipe(object): ...@@ -165,13 +165,14 @@ class Recipe(object):
""" """
url, callable = script.rsplit(':', 1) url, callable = script.rsplit(':', 1)
filename, is_temp = self.download_file(url) filename, is_temp = self.download_file(url)
try:
if not is_temp: if not is_temp:
filename = os.path.abspath(filename) filename = os.path.abspath(filename)
module = imp.load_source('script', filename) module = imp.load_source('script', filename)
script = getattr(module, callable.strip()) script = getattr(module, callable.strip())
try: try:
script(self.options, self.buildout, self.augmented_environment()) script(self.options, self.buildout,
self.augmented_environment())
except TypeError: except TypeError:
# BBB: Support hook scripts that do not take the environment as # BBB: Support hook scripts that do not take the environment as
# the third parameter # the third parameter
...@@ -282,7 +283,10 @@ class Recipe(object): ...@@ -282,7 +283,10 @@ class Recipe(object):
log.info('Applying patches') log.info('Applying patches')
for patch in patches: for patch in patches:
patch_filename, is_temp = self.download_file(patch) patch_filename, is_temp = self.download_file(patch)
self.run('%s %s < %s' % (patch_cmd, patch_options, patch_filename)) try:
self.run('%s %s < %s' % (patch_cmd, patch_options,
patch_filename))
finally:
if is_temp: if is_temp:
os.remove(patch_filename) os.remove(patch_filename)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment