Fixes finding the path of Pineapple. #69
1 changed files with 17 additions and 7 deletions
24
.github/workflows/update.sh
vendored
24
.github/workflows/update.sh
vendored
|
@ -1,13 +1,23 @@
|
||||||
#!/bin/bash
|
#!/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
|
directory=${APPIMAGE%$ARGV0}
|
||||||
answer=$?
|
|
||||||
|
|
||||||
if [ "$answer" -eq 0 ]; then
|
if [ -w $directory ] ; then
|
||||||
$APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage "$@"
|
zenity --question --timeout=10 --title="yuzu updater" --text="New update available. Update now?" --icon-name=yuzu --window-icon=yuzu.svg --height=80 --width=400
|
||||||
elif [ "$answer" -eq 1 ]; then
|
answer=$?
|
||||||
$APPDIR/AppRun-patched "$@"
|
|
||||||
elif [ "$answer" -eq 5 ]; then
|
if [ "$answer" -eq 0 ]; then
|
||||||
|
|
||||||
|
$APPDIR/usr/bin/AppImageUpdate $APPIMAGE && "$directory"yuzu-x86_64.AppImage "$@"
|
||||||
|
|
||||||
|
elif [ "$answer" -eq 1 ]; then
|
||||||
|
$APPDIR/AppRun-patched "$@"
|
||||||
|
elif [ "$answer" -eq 5 ]; then
|
||||||
|
$APPDIR/AppRun-patched "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
zenity --error --timeout=5 --text="Cannot update in $directory" --title="Update Error" --width=500 --width=200
|
||||||
$APPDIR/AppRun-patched "$@"
|
$APPDIR/AppRun-patched "$@"
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue