gapfiller: traverse subdirectories in patch (#14375)
* gapfiller: traverse subdirectories in patch * gapfiller: revert glob function change * gapfiller: use more precise glob
This commit is contained in:
parent
a18ab8f765
commit
30694aa501
@ -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')
|
||||||
|
Loading…
Reference in New Issue
Block a user