Skip to content

Commit aaf53c1

Browse files
committed
tools: print modified images
1 parent 4c992dd commit aaf53c1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/core/toolkit.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ def _get_modified_images(self) -> List[str]:
126126
assert m, "mismatch line (%r): %s" % (p, line)
127127
image = m.group(1)
128128
images.add(image)
129+
130+
print()
131+
print("Modified images: " + ", ".join(images))
132+
print()
133+
129134
return list(images)
130135

131136
def build(self,

0 commit comments

Comments
 (0)