Skip to content

Commit 13708b1

Browse files
flavioislimaCommandMC
authored andcommitted
[Build] Build tar.xz instead of tar.zst
1 parent f52e648 commit 13708b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fi
1212
VKD3D_VERSION="$1"
1313
VKD3D_SRC_DIR=$(dirname "$(readlink -f "$0")")
1414
VKD3D_BUILD_DIR=$(realpath "$2")"/vkd3d-proton-$VKD3D_VERSION"
15-
VKD3D_ARCHIVE_PATH=$(realpath "$2")"/vkd3d-proton-$VKD3D_VERSION.tar.zst"
15+
VKD3D_ARCHIVE_PATH=$(realpath "$2")"/vkd3d-proton-$VKD3D_VERSION.tar.xz"
1616

1717
if [ -e "$VKD3D_BUILD_DIR" ]; then
1818
echo "Build directory $VKD3D_BUILD_DIR already exists"
@@ -83,7 +83,7 @@ function build_script {
8383

8484
function package {
8585
cd "$VKD3D_BUILD_DIR/.."
86-
tar -caf "$VKD3D_ARCHIVE_PATH" "vkd3d-proton-$VKD3D_VERSION"
86+
tar -cJf "$VKD3D_ARCHIVE_PATH" "vkd3d-proton-$VKD3D_VERSION"
8787
rm -R "vkd3d-proton-$VKD3D_VERSION"
8888
}
8989

0 commit comments

Comments
 (0)