Skip to content

Commit 5bcc6a6

Browse files
authored
Update dogfeeding.sh
1 parent 37b36e0 commit 5bcc6a6

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

dogfeeding.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ cd build/
1515
# apt download -y apt libapt-pkg5.0 libbz2-1.0 liblzma5 multiarch-support zlib1g dpkg
1616
apt download -y dpkg # We are still using dpkg-deb to extract debs, so we need to bundle it
1717

18-
wget -c "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage" # FIXME: Make arch independent
18+
# Include legacy appimagetool in the AppDir
19+
wget -c "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage" # FIXME: Make arch independent
1920
chmod +x ./*.AppImage
21+
./appimagetool-*.AppImage --appimage-extract && mv ./squashfs-root ./pkg2appimage.AppDir && rm -f ./appimagetool-*.AppImage
2022

21-
./appimagetool-*.AppImage --appimage-extract && mv ./squashfs-root ./pkg2appimage.AppDir
23+
# Download recommended appimagetool build to create pkg2appimage AppImage
24+
wget -c "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage" # FIXME: Make arch independent
25+
chmod +x ./*.AppImage
2226
cd ./pkg2appimage.AppDir
2327

2428
find ../*.deb -exec dpkg-deb -x {} . \; || true

0 commit comments

Comments
 (0)