-
- Downloads
Fix incorrect installation of CWL files
Many CWL files were being installed in the wrong directory. This has been fixed. This commit fixes RAP-249.
parent
ad901939
No related branches found
No related tags found
Loading
-
BTW: I do have a different implementation for lines 14-19 that doesn't use
os.walk
, butglob.glob
instead. It's a bit slower, but maybe you consider it more readable:cwl_files = collections.defaultdict(list) for dir in ('lofar-cwl', 'steps', 'subworkflow', 'workflows'): for file in glob.glob(os.path.join(dir, '**/*.cwl'), recursive=True): cwl_files[os.path.join('share', 'prefactor', os.path.dirname(file))].append(file) data_files = cwl_files.items()
-
mentioned in commit 529e3eee
-
mentioned in commit 1ecd06c9
-
mentioned in commit 99899e96
-
mentioned in commit b95945e1
Please register or sign in to comment