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 07d05de commit d63f73dCopy full SHA for d63f73d
rust/patchable/src/patch.rs
@@ -128,6 +128,8 @@ fn patch_files(patch_dir: &Path) -> Result<Vec<PathBuf>> {
128
"series file found, treating as stgit series"
129
);
130
file.lines()
131
+ // Skip comment lines
132
+ .filter(|line| !line.starts_with('#'))
133
.map(|file_name| patch_dir.join(file_name))
134
.collect::<Vec<_>>()
135
}
0 commit comments