commit | de3a7707058390b0b7d5b41a6c3187c370cfac60 | [log] [tgz] |
---|---|---|
author | Kousik Kumar <kousikk@google.com> | Mon Jun 20 21:29:08 2022 +0000 |
committer | Kousik Kumar <kousikk@google.com> | Tue Jun 21 13:16:53 2022 +0000 |
tree | 875c5a05053846707a13a56f8a636d351c48085c | |
parent | cf811d726665c32e340bf273553f68fbea8677dd [diff] |
[RESTRICT AUTOMERGE] Fix ioutil import in sc-dev branch Looks like the change from rvc-dev (https://googleplex-android-review.git.corp.google.com/c/platform/build/soong/+/18971604), when merged into sc-dev removes the ioutil import which is actually being used. Test: Ran a build and made sure Soong bootstrap works. Bug: b/236642556 Change-Id: I2b85b7f4787ec2df5082ebfc969887495763aa3b (cherry picked from commit 4a31fb1004a65ad82ebbc71242e730dcefdd4582)
diff --git a/cmd/soong_ui/main.go b/cmd/soong_ui/main.go index 539db35..22922c0 100644 --- a/cmd/soong_ui/main.go +++ b/cmd/soong_ui/main.go
@@ -18,6 +18,7 @@ "context" "flag" "fmt" + "io/ioutil" "os" "path/filepath" "strconv"