Commit fb85154f authored by Willi Rath's avatar Willi Rath
Browse files

Do unzipping in a script

parent 8be7807d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,5 +45,5 @@ doc:
      prefix: doc
      method: !!python/name:data_repo_renderer.CurlSingleFile

prost_processing:
    - "find data/ -type f -name \*\.gz -print0 | xargs -0 -n1 -P4 gunzip -v"
post_processing:
    - util/uncompress_data.sh
+4 −0
Original line number Diff line number Diff line
#!/bin/bash

find data/ -iname \*.gz -print0 | \
    xargs -0 -n1 -P4 gunzip -v