Skip to content

Commit fd73ab5

Browse files
authored
Merge pull request #258 from bedroge/zstd_ingestion
Fix ingestion of zstd-compressed tarballs
2 parents ac7a5b9 + 0356d84 commit fd73ab5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/ingest-tarball.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ elif [ "${tar_file_ext}" = "gz" ]; then
274274
error "gunzip needs to be installed to handle gzip-compressed tarballs."
275275
fi
276276
elif [ "${tar_file_ext}" = "zst" ]; then
277-
decompress="zstd -c"
277+
decompress="zstd -c -d"
278278
if ( ! command -v zstd >& /dev/null ); then
279279
error "zstd needs to be installed to handle zstd-compressed tarballs."
280280
fi

0 commit comments

Comments
 (0)