mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-06-02 06:03:44 +02:00
Fix gradlew path resolution in env.py
This commit is contained in:
+2
-1
@@ -46,7 +46,8 @@ class Paths:
|
||||
self.ndk_build = self.ndk / "ndk-build"
|
||||
self.rust_sysroot = self.ndk / "toolchains" / "rust"
|
||||
self.adb = self.sdk / "platform-tools" / "adb"
|
||||
self.gradlew = Path.cwd() / "app" / "gradlew"
|
||||
project_root = Path(__file__).resolve().parent.parent
|
||||
self.gradlew = project_root / "app" / "gradlew"
|
||||
|
||||
|
||||
@functools.cache
|
||||
|
||||
Reference in New Issue
Block a user