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

14 lines
422 B
Bash
Raw Normal View History

2020-12-29 13:48:46 -05: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 13:47:14 -05:00
$APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage
2020-12-29 13:48:46 -05:00
elif [ "$answer" -eq 1 ]; then
2021-07-10 19:19:56 -04:00
$APPDIR/AppRun-patched
2020-12-29 13:48:46 -05:00
elif [ "$answer" -eq 5 ]; then
2021-07-10 19:19:56 -04:00
$APPDIR/AppRun-patched
2020-12-29 13:48:46 -05:00
fi
exit 0