aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKousik Kumar <kousikk@google.com>2022-06-20 21:29:08 +0000
committerKousik Kumar <kousikk@google.com>2022-06-20 21:34:04 +0000
commit4a31fb1004a65ad82ebbc71242e730dcefdd4582 (patch)
tree6acce30adae6a38a32e8b3ca99b3304b6bf124ac
parent14325e74e0fefae18666e653684a10c6bc5658b9 (diff)
downloadsoong-4a31fb1004a65ad82ebbc71242e730dcefdd4582.tar.gz
[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
-rw-r--r--cmd/soong_ui/main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/soong_ui/main.go b/cmd/soong_ui/main.go
index 539db35f2..22922c0e5 100644
--- a/cmd/soong_ui/main.go
+++ b/cmd/soong_ui/main.go
@@ -18,6 +18,7 @@ import (
"context"
"flag"
"fmt"
+ "io/ioutil"
"os"
"path/filepath"
"strconv"