mirror of https://github.com/procxx/kepka.git
Show friendly warning if snapd didn't update snap right for some reason
This commit is contained in:
parent
b98f0933af
commit
b79ecb5909
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ ! -d $SNAP/kf5/usr ]; then
|
||||||
|
runtime="kde-frameworks-5-core18"
|
||||||
|
slot="kde-frameworks-5-core18:kde-frameworks-5-core18-slot"
|
||||||
|
|
||||||
|
echo "You need to connect this snap to the $runtime snap."
|
||||||
|
echo ""
|
||||||
|
echo "You can do this with those commands:"
|
||||||
|
echo "snap install $runtime"
|
||||||
|
echo "snap refresh $runtime"
|
||||||
|
echo "snap connect $SNAP_NAME:kde-frameworks-5-plug $slot"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec telegram-desktop "$@"
|
|
@ -15,7 +15,7 @@ architectures:
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
telegram-desktop:
|
telegram-desktop:
|
||||||
command: telegram-desktop
|
command: telegram-launch
|
||||||
common-id: org.telegram.desktop
|
common-id: org.telegram.desktop
|
||||||
desktop: share/applications/telegramdesktop.desktop
|
desktop: share/applications/telegramdesktop.desktop
|
||||||
environment:
|
environment:
|
||||||
|
@ -131,6 +131,12 @@ parts:
|
||||||
- range-v3
|
- range-v3
|
||||||
- xxhash
|
- xxhash
|
||||||
|
|
||||||
|
telegram-launcher:
|
||||||
|
plugin: dump
|
||||||
|
source: snap/scripts
|
||||||
|
organize:
|
||||||
|
telegram-launch: bin/telegram-launch
|
||||||
|
|
||||||
patches:
|
patches:
|
||||||
plugin: dump
|
plugin: dump
|
||||||
source: Telegram/Patches
|
source: Telegram/Patches
|
||||||
|
|
Loading…
Reference in New Issue