summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2018-05-28 13:18:49 +0200
committerPatrick Vacek <patrickvacek@gmail.com>2018-05-28 13:19:44 +0200
commit87d769fc52592bc6ef90bd8287716ebbca4e1252 (patch)
tree33f3bcb598242059391aa9d33bb283b19baef9ae
parent6fef541a1410493881689a4b2a60d1d6b49831cd (diff)
downloadmeta-updater-87d769fc52592bc6ef90bd8287716ebbca4e1252.tar.gz
find_packages.py: Add explanatory comment about list appending.
-rwxr-xr-xscripts/find_packages.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/find_packages.py b/scripts/find_packages.py
index 6bad742..50453c1 100755
--- a/scripts/find_packages.py
+++ b/scripts/find_packages.py
@@ -110,6 +110,9 @@ def main():
110 'dpkg', # BUILD_DEB only 110 'dpkg', # BUILD_DEB only
111 'systemd'] # BUILD_SYSTEMD only 111 'systemd'] # BUILD_SYSTEMD only
112 112
113 # Iterate through the list of recipes to check. Append any dependencies
114 # found that aren't already in the list. As long as we only add to the
115 # list, it should be safe.
113 for recipe in recipes_to_check: 116 for recipe in recipes_to_check:
114 depends = print_deps(tinfoil, abcd_file, recipe) 117 depends = print_deps(tinfoil, abcd_file, recipe)
115 for dep in depends: 118 for dep in depends: