diff --git a/build.py b/build.py index 93e6d18..09e982f 100644 --- a/build.py +++ b/build.py @@ -24,7 +24,8 @@ def load_matches(): else: match = pattern.findall(line) if match: - matched.append(match[0]) + if not line.strip().startswith('//'): + matched.append(match[0]) else: break