diff options
| -rw-r--r-- | scripts/lib/wic/plugins/source/rawcopy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/source/rawcopy.py b/scripts/lib/wic/plugins/source/rawcopy.py index ccf332554e..21903c2f23 100644 --- a/scripts/lib/wic/plugins/source/rawcopy.py +++ b/scripts/lib/wic/plugins/source/rawcopy.py | |||
| @@ -58,7 +58,8 @@ class RawCopyPlugin(SourcePlugin): | |||
| 58 | decompressor = { | 58 | decompressor = { |
| 59 | ".bz2": "bzip2", | 59 | ".bz2": "bzip2", |
| 60 | ".gz": "gzip", | 60 | ".gz": "gzip", |
| 61 | ".xz": "xz" | 61 | ".xz": "xz", |
| 62 | ".zst": "zstd -f", | ||
| 62 | }.get(extension) | 63 | }.get(extension) |
| 63 | if not decompressor: | 64 | if not decompressor: |
| 64 | raise WicError("Not supported compressor filename extension: %s" % extension) | 65 | raise WicError("Not supported compressor filename extension: %s" % extension) |
