Merge "Skip downloading giant VMware images"
This commit is contained in:
commit
495fb9cf56
@ -96,7 +96,10 @@ def local_prep(distribution):
|
|||||||
continue
|
continue
|
||||||
if line[0] == line[-1] == '"':
|
if line[0] == line[-1] == '"':
|
||||||
line = line[1:-1]
|
line = line[1:-1]
|
||||||
images += [x.strip() for x in line.split(',')]
|
# Add image to the list to be downloaded, but
|
||||||
|
# skip downloading giant vmware images
|
||||||
|
images += [x.strip() for x in line.split(',')
|
||||||
|
if not x.strip().endswith('vmdk')]
|
||||||
branch_data['images'] = images
|
branch_data['images'] = images
|
||||||
branches.append(branch_data)
|
branches.append(branch_data)
|
||||||
return branches
|
return branches
|
||||||
|
Loading…
x
Reference in New Issue
Block a user