Skip to content

Commit 66d8138

Browse files
committed
Correct PYTHON_DIR reference in gradle script.
1 parent e1afb8c commit 66d8138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Platforms/Android/testbed/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
val ANDROID_DIR = file("../..")
10-
val PYTHON_DIR = ANDROID_DIR.parentFile!!
10+
val PYTHON_DIR = ANDROID_DIR.parentFile.parentFile!!
1111
val PYTHON_CROSS_DIR = file("$PYTHON_DIR/cross-build")
1212
val inSourceTree = (
1313
ANDROID_DIR.name == "Android" && file("$PYTHON_DIR/pyconfig.h.in").exists()

0 commit comments

Comments
 (0)