Skip to content

Commit

Permalink
Update Magisk Delta to R65C33E4F-kitsune
Browse files Browse the repository at this point in the history
  • Loading branch information
JadenJSJ committed Apr 9, 2024
1 parent 6163fdb commit ceb91fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions usr/magisk/update_magisk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ ver="$(cat "$DIR/magisk_version" 2>/dev/null || echo -n 'none')"
if [ "x$1" = "xcanary" ]
then
nver="canary"
magisk_link="https://github.com/topjohnwu/magisk-files/raw/${nver}/app-debug.apk"
magisk_link="https://github.com/HuskyDG/magisk-files/releases/download/1707294287/app-release.apk"
elif [ "x$1" = "xlocal" ]
then
nver="local"
magisk_link="https://gitlab.com/TenSeventy7/magisk-files/raw/main/app-debug.apk"
magisk_link="https://github.com/HuskyDG/magisk-files/releases/download/1707294287/app-release.apk"
else
if [ "x$1" = "x" ]; then
nver="$(curl -s https://raw.githubusercontent.com/topjohnwu/magisk-files/master/stable.json | jq '.magisk.version' | cut -d '"' -f 2)"
else
nver="$1"
fi
magisk_link="https://cdn.jsdelivr.net/gh/topjohnwu/magisk-files@${nver}/app-release.apk"
magisk_link="https://github.com/HuskyDG/magisk-files/releases/download/1707294287/app-release.apk"
fi

if [ \( -n "$nver" \) -a \( "$nver" != "$ver" \) -o ! \( -f "$DIR/arm/magiskinit64" \) -o \( "$nver" = "canary" \) -o \( "$nver" = "local" \) ]
Expand Down

0 comments on commit ceb91fa

Please sign in to comment.