yuzu/.github/workflows/update.sh

21 lines
572 B
Bash
Raw Normal View History

2020-12-29 22:48:46 +04: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=$?
directory=${APPIMAGE%$ARGV0}
2020-12-29 22:48:46 +04:00
if [ "$answer" -eq 0 ]; then
if [ -w $directory ] ; then
$APPDIR/usr/bin/AppImageUpdate $APPIMAGE && "$directory"yuzu-x86_64.AppImage "$@"
else
echo -e "Cannot update in $directory\n\n"
$APPDIR/AppRun-patched "$@"
fi
2020-12-29 22:48:46 +04:00
elif [ "$answer" -eq 1 ]; then
2022-04-12 07:13:36 +04:00
$APPDIR/AppRun-patched "$@"
2020-12-29 22:48:46 +04:00
elif [ "$answer" -eq 5 ]; then
2022-04-12 07:13:36 +04:00
$APPDIR/AppRun-patched "$@"
2020-12-29 22:48:46 +04:00
fi
exit 0