Commit 85715e11 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm repack.d/generic-appimage.sh: install /usr/share/icons/hicolor... if exists

parent d245a6db
......@@ -68,6 +68,12 @@ if [ ! -s "$FROMICONFILE" ] ; then
fi
install_file $PRODUCTDIR/$FROMICONFILE /usr/share/pixmaps/$ICONFILE
# copy icons if possible
for i in usr/share/icons/hicolor/*x*/apps/* ; do
[ -f "$i" ] || continue
install_file $PRODUCTDIR/$i /$i
done
# hack for remove MacOS only stuffs
remove_dir $(find $BUILDROOT -type d -name "*catalina*" | sed -e "s|$BUILDROOT||")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment