pineapple-src/.github/workflows/update.sh

14 lines
422 B
Bash
Raw Normal View History

2020-12-29 18:48:46 +00:00
#!/bin/bash
zenity --question --timeout=10 --title="yuzu updater" --text="New update available. Update now?" --icon-name=yuzu --window-icon=yuzu.svg --height=80 --width=400
answer=$?
if [ "$answer" -eq 0 ]; then
2021-01-19 18:47:14 +00:00
$APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage
2020-12-29 18:48:46 +00:00
elif [ "$answer" -eq 1 ]; then
2021-07-10 23:19:56 +00:00
$APPDIR/AppRun-patched
2020-12-29 18:48:46 +00:00
elif [ "$answer" -eq 5 ]; then
2021-07-10 23:19:56 +00:00
$APPDIR/AppRun-patched
2020-12-29 18:48:46 +00:00
fi
exit 0