From 6f2c76b898bca4b9ddd240ae47761cc65910a937 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Thu, 9 May 2024 02:19:24 -0700 Subject: [PATCH] Fix build script --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 8c5cca80c..55167795d 100755 --- a/build.py +++ b/build.py @@ -86,7 +86,7 @@ ndk_build = ndk_path / "ndk-build" rust_bin = ndk_path / "toolchains" / "rust" / "bin" llvm_bin = ndk_path / "toolchains" / "llvm" / "prebuilt" / f"{os_name}-x86_64" / "bin" cargo = rust_bin / f"cargo{EXE_EXT}" -gradlew = Path("gradlew" + (".bat" if is_windows else "")) +gradlew = Path("gradlew" + (".bat" if is_windows else "")).resolve() adb_path = sdk_path / "platform-tools" / f"adb{EXE_EXT}" native_gen_path = Path("native", "out", "generated").resolve()