Skip to content
Snippets Groups Projects
Commit 798aaf91 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Added message that warns the user that building all available packages will take a LONG time

parent 4e959cbc
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,9 @@ class Recipe:
:return: Paths to files, as strings, created by the recipe.
"""
if self.options['name'] == "all":
logger.warning("WARNING: You've requested all packages to be built. This will take a long time.")
logger.warning("If only one or a few packages have changed, consider specifying them "
"in a comma-separated list.")
pkgs = self.pkg_list
else:
pkgs = self.options['name'].split(',')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment