From c07cd6736ce2b0b27c617b992a88cd2c57574ce6 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 5 Dec 2023 15:17:05 +0100 Subject: [PATCH] Added bz2 format to auto_decompress(). --- container/bin/build_source | 3 +++ 1 file changed, 3 insertions(+) diff --git a/container/bin/build_source b/container/bin/build_source index 5055e83..54fa9ba 100755 --- a/container/bin/build_source +++ b/container/bin/build_source @@ -122,6 +122,9 @@ native_source() ( auto_decompress() ( case "${1##*.}" in + bz2) + bzip2 -d < "$1" + ;; gz) gzip -d < "$1" ;;