We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c4954b commit d78e27dCopy full SHA for d78e27d
builder
@@ -43,7 +43,8 @@ function _get_image {
43
}
44
45
function _decompress_image {
46
- tar -xJf "$IMAGE_XZ" -C images || die "Could not extract $IMAGE_XZ"
+ unxz -kf "$IMAGE_XZ" || die "Could not decompress $IMAGE_XZ"
47
+ mv "${IMAGE_XZ%.xz}" images/ || die "Could not move decompressed file"
48
49
50
function _disable_daemons {
0 commit comments