Skip to content

Commit

Permalink
zip outputs recursive (#348)
Browse files Browse the repository at this point in the history
* zip outputs recursive

* update manifest
  • Loading branch information
rzlim08 authored Apr 17, 2024
1 parent 79a4f29 commit 7e6d8a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions workflows/bulk-download/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ input_loaders:
bulk_download_type: ~
outputs:
files: ~
concatenated_output_name: ~
- name: passthrough
version: ">=0.0.1"
inputs:
Expand Down
2 changes: 1 addition & 1 deletion workflows/bulk-download/run.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ task zip {
mkdir zip_folders
for f in ~{sep=" " files}; do unzip "$f" -d zip_folders/$(basename "${f%.zip}"); done
cd zip_folders
zip ../result.zip *
zip -r ../result.zip *
else
zip --junk-paths result.zip ~{sep=" " files}
fi
Expand Down

0 comments on commit 7e6d8a4

Please sign in to comment.