This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Description
If I correctly understand, then if a line in config_initialize.txt (the dependencies specification for a build) is intended as a comment, but the # is not the very first character (e.g. if the comment line is indented), it will not be properly recognized as a comment line and may be parsed incorrectly. It would fall through this check: https://github.com/SeattleTestbed/buildscripts/blob/master/initialize.py#L73
If we want to avoid that issue, we can simply do this instead of the existing line:
if line.strip().startswith("#") or line.strip() == '':