summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
author Rupert Shuttleworth <ruperts@google.com> 2020-12-07 09:59:13 +0000
committer Rupert Shuttleworth <ruperts@google.com> 2020-12-07 09:59:13 +0000
commit561f2f2d96d259ebe3772f229661fc8bc5bdf54f (patch)
treeca923f26244cbec13c44a9c7c2eee59ae9c9d6a0 /ui
parent47132c49431ce6eb0a57a8850f2fe90d93fd062d (diff)
Only print the Bazel command line once.
Test: USE_BAZEL=1 m and USE_BAZEL=1 use_rbe m. Change-Id: I8413e92d91c906f884628bedac6955575cf86a1c
Diffstat (limited to 'ui')
-rw-r--r--ui/build/bazel.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/build/bazel.go b/ui/build/bazel.go
index 1cab8f8a7..23b14ee1b 100644
--- a/ui/build/bazel.go
+++ b/ui/build/bazel.go
@@ -156,9 +156,6 @@ func runBazel(ctx Context, config Config) {
"//:"+config.TargetProduct()+"-"+config.TargetBuildVariant(),
)
- // Print the full command line for debugging purposes.
- ctx.Println(cmd.Cmd)
-
// Execute the command at the root of the directory.
cmd.Dir = filepath.Join(config.OutDir(), "..")