Skip to content
Snippets Groups Projects
Commit 30694aa5 authored by Justin S's avatar Justin S Committed by Adam J. Stewart
Browse files

gapfiller: traverse subdirectories in patch (#14375)

* gapfiller: traverse subdirectories in patch

* gapfiller: revert glob function change

* gapfiller: use more precise glob
parent a18ab8f7
Branches
Tags
No related merge requests found
...@@ -33,7 +33,7 @@ def url_for_version(self, version): ...@@ -33,7 +33,7 @@ def url_for_version(self, version):
def patch(self): def patch(self):
with working_dir('.'): with working_dir('.'):
files = glob.iglob("*.pl") files = glob.glob("*.pl") + glob.glob('bwa/*.pl')
for file in files: for file in files:
change = FileFilter(file) change = FileFilter(file)
change.filter('usr/bin/perl', 'usr/bin/env perl') change.filter('usr/bin/perl', 'usr/bin/env perl')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment