From ce4c7cd55de03370db4a47afd3b4bd52cdac1fb5 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 14 Oct 2020 11:29:16 -0700 Subject: [PATCH] Add odm_dlkm and vendor_dlkm to the installclean list Clean the odm_dlkm and vendor_dlkm staging directories in installclean to get consistent results in incremental builds on the build servers. Test: treehugger Change-Id: Id431d7457d85e0be68437a2034fd544d74cc3709 --- ui/build/cleanbuild.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/build/cleanbuild.go b/ui/build/cleanbuild.go index fc0329f69..03e884a65 100644 --- a/ui/build/cleanbuild.go +++ b/ui/build/cleanbuild.go @@ -127,6 +127,7 @@ func installClean(ctx Context, config Config, what int) { productOut("system"), productOut("system_other"), productOut("vendor"), + productOut("vendor_dlkm"), productOut("product"), productOut("system_ext"), productOut("oem"), @@ -136,6 +137,7 @@ func installClean(ctx Context, config Config, what int) { productOut("coverage"), productOut("installer"), productOut("odm"), + productOut("odm_dlkm"), productOut("sysloader"), productOut("testcases")) }