working on the options
[citadel.git] / appimage / build_appimage.sh
index ae54bb2a347b95132409ca8cbe05dbe6ae7abc04..d2d181909c395f232efa20c877f4c04a2b921d1a 100755 (executable)
@@ -59,6 +59,8 @@ cc ctdlvisor.c -o citadel.AppDir/usr/bin/ctdlvisor || exit 1
 cpu=`uname -p`
 if [ $cpu == x86_64 ] ; then
        ARCH=x86_64 appimagetool citadel.AppDir/
+       md5sum Citadel-x86_64.AppImage | awk ' { print $1 } ' >Citadel-x86_64.AppImage.md5
 else
        ARCH=ARM appimagetool citadel.AppDir/
+       md5sum Citadel-armhf.AppImage | awk ' { print $1 } ' >Citadel-armhf.AppImage.md5
 fi