Skip to content

Commit c391445

Browse files
committed
Work around QEMU magic bytes incompatibility
1 parent 841fcdf commit c391445

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/build.sh

+5
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@ fi
173173

174174
chmod -v +x linuxdeploy*-"$ARCH".AppImage
175175

176+
# workaround for QEMU
177+
for appimage in *.AppImage; do
178+
dd if=/dev/zero bs=1 count=3 seek=8 conv=notrunc of="$appimage"
179+
done
180+
176181
./linuxdeploy-"$ARCH".AppImage -v0 \
177182
--appdir "$(readlink -f AppDir)" \
178183
--plugin qt \

0 commit comments

Comments
 (0)