Fix regression in build-script
The regex patch introduced a regression where the summary was not working due to not copying the images lists, but rather referencing it This only happens when you do not use a regex to build, but instead build all images Change-Id: Ife0ef2d459248aa73af877313140b5392c05673c Partially-Implements: blueprint build-script
This commit is contained in:
parent
46ed803789
commit
71f07484ea
@ -299,7 +299,7 @@ class KollaWorker(object):
|
||||
images_to_process.append(image)
|
||||
added = True
|
||||
else:
|
||||
images_to_process = self.images
|
||||
images_to_process = list(self.images)
|
||||
|
||||
self.tiers = list()
|
||||
while images_to_process:
|
||||
|
Loading…
x
Reference in New Issue
Block a user