Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
kernelsu: Fix compilation after v0.6.6 release
Browse files Browse the repository at this point in the history
Signed-off-by: GhostMaster69-dev <rathore6375@gmail.com>
  • Loading branch information
GhostMaster69-dev committed Aug 10, 2023
1 parent c125262 commit 055d92b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/kernelsu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function do_older()
{
if ! [ -d $KERNELSU ]; then
git clone https://github.com/tiann/KernelSU.git $KERNELSU > /dev/null 2>&1
git -C $KERNELSU checkout $action > /dev/null 2>&1
git -C $KERNELSU checkout $action > /dev/null 2>&1
fi
}

Expand All @@ -47,4 +47,7 @@ do_$action
else
do_older
fi
if [ $(git -C $KERNELSU describe --abbrev=0 --tags) = "v0.6.6" ]; then
git -C $KERNELSU cherry-pick --no-gpg-sign 0b1bab5b01d346ed4ad1b00d4ba974e27a20f5fb
fi

0 comments on commit 055d92b

Please sign in to comment.