Commit d5051f2e authored by Kevin Modzelewski's avatar Kevin Modzelewski

Need to filter out the LICENSE file in this tool

parent 103269b3
......@@ -77,6 +77,9 @@ if __name__ == "__main__":
for patch_fn in patch_fns:
if patch_fn.startswith('.'):
continue
if patch_fn.startswith("LICENSE"):
continue
patch_fn = os.path.abspath(os.path.join(patch_dir, patch_fn))
code = subprocess.call(["git", "am", patch_fn], cwd=repo)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment