mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-25 20:31:23 +00:00
ubuntu-cpc: Allow comments in series files
An upcoming addition of the disk-image target to several series files will required some explanation. Without comment support in series files that is not possible. This patch adds support for comments in series files.
This commit is contained in:
parent
afc482a375
commit
7da22ddf55
@ -161,7 +161,7 @@ class MakeHooks:
|
||||
with open(series_file, "r", encoding="utf-8") as fp:
|
||||
for line in fp:
|
||||
line = line.strip()
|
||||
if not line:
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
m = re.match(r"^\s*depends\s+(\S+.*)$", line)
|
||||
if m:
|
||||
|
Loading…
x
Reference in New Issue
Block a user