Load env variables before c.config() am: 062b011502

Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/15723183

Change-Id: I13773a3be06c8ad4426960b0f2fbc45bbed3e85f
This commit is contained in:
Kousik Kumar 2021-08-31 17:33:30 +00:00 committed by Automerger Merge Worker
commit f04dc7f1b1
1 changed files with 1 additions and 2 deletions

View File

@ -195,13 +195,12 @@ func main() {
Status: stat,
}}
config := c.config(buildCtx, args...)
if err := loadEnvConfig(); err != nil {
fmt.Fprintf(os.Stderr, "failed to parse env config files: %v", err)
os.Exit(1)
}
config := c.config(buildCtx, args...)
build.SetupOutDir(buildCtx, config)