| Index: tools/bots/cross-vm.py | 
| diff --git a/tools/bots/cross-vm.py b/tools/bots/cross-vm.py | 
| index 1296fe920517b9daa06fcb75af65c66a2affb964..9fd751fc4b8ca76f2936054ef341dfc1efea0111 100644 | 
| --- a/tools/bots/cross-vm.py | 
| +++ b/tools/bots/cross-vm.py | 
| @@ -51,8 +51,7 @@ def cross_compiling_builder(arch, mode): | 
|  | 
| with bot.BuildStep('Upload build tarball'): | 
| uri = "%s/%s" % (GCS_BUCKET, tarball) | 
| -        run([GSUTIL, 'cp', tarball, uri]) | 
| -        run([GSUTIL, 'setacl', 'public-read', uri]) | 
| +        run([GSUTIL, 'cp', '-a', 'public-read', tarball, uri]) | 
|  | 
| elif num_run == 2: | 
| with bot.BuildStep('tests'): | 
|  |