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 0c1df22 commit a5fd0c4Copy full SHA for a5fd0c4
mount_rubikpi3.sh
@@ -39,7 +39,7 @@ if [[ "$base_image" == *.yaml ]]; then
39
elif [[ "$base_image" == *.tar.xz ]]; then
40
# Directly download the tar.xz file
41
wget -nv -O base_image.tar.xz "${base_image}"
42
- tar -xJvf base_image.tar.xz
+ tar -I 'xz -T0' -xf base_image.tar.xz
43
else
44
echo "Error: base_image must be a .yaml manifest or .tar.xz"
45
exit 1
@@ -212,4 +212,4 @@ find photonvision_rubikpi3 -mindepth 1 -type d -empty -delete
212
# Set output for later steps
213
# Save the rootfs image path for later steps
214
echo "rootfs_image=$ROOTFS_IMG" >> $GITHUB_ENV
215
-tar -cJf photonvision_rubikpi3.tar.xz -C . photonvision_rubikpi3
+tar -I 'xz -T0' -cf photonvision_rubikpi3.tar.xz photonvision_rubikpi3
0 commit comments