We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e424547 commit 1f56737Copy full SHA for 1f56737
populate_build.py
@@ -310,7 +310,7 @@ def get_new_images(
310
def parse_denylist(filename: Path) -> List[str]:
311
"""Parse the list of images to skip."""
312
with filename.open() as handle:
313
- return [entry for line in handle.readlines() if (entry := line.strip())]
+ return [entry for line in handle.readlines() if (entry := line.strip() and not line.startswith('#'))]
314
315
316
def generate_build_script(filename: Path, images: List[str]) -> None:
0 commit comments