diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-03-19 16:05:52 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-03-19 16:07:05 -0700 |
commit | b9210b285566acd72d0820b42c1a330ba56a1ad0 (patch) | |
tree | 10abb9fce0fd61646d314e99972fdfb058fc128a /tools | |
parent | 57d9bd922b4eff922d1a5185529fe5446249d592 (diff) |
Fix bm-tools to run on bazel.
Fixes random stuff that is broken on bazel/kokoro.
- random output coming back as "bytes" object instead of str
- missed syntax error in bazel
- a flag is missing in the version of gcloud on kokoro
PiperOrigin-RevId: 301915289
Diffstat (limited to 'tools')
-rw-r--r-- | tools/images/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/images/BUILD b/tools/images/BUILD index fe11f08a3..66ffd02aa 100644 --- a/tools/images/BUILD +++ b/tools/images/BUILD @@ -9,7 +9,7 @@ package( genrule( name = "zone", outs = ["zone.txt"], - cmd = "gcloud config get-value compute/zone > $@", + cmd = "gcloud config get-value compute/zone > \"$@\"", tags = [ "local", "manual", |