touched_files = self._get_touched_files()
if self._show_files:
for path in touched_files:
yield path
else:
touched_targets = set()
for path in touched_files:
self._load_build_files(path)
After Change
help="Show changed files instead of the targets that own them.")
def console_output(self, _):
if self.get_options().files:
for f in sorted(self._changed_files()):
yield f
else: