Skip to content

Commit 0a86916

Browse files
committed
Fix cleanup
1 parent 9907ce5 commit 0a86916

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,9 @@ def cleanup():
487487

488488
if "app" in targets:
489489
header("* Cleaning app")
490-
execv([gradlew, ":app:clean"], env=find_jdk())
490+
os.chdir("app")
491+
execv([gradlew, ":clean"], env=find_jdk())
492+
os.chdir("..")
491493

492494

493495
def build_all():

0 commit comments

Comments
 (0)