Skip to content

Commit

Permalink
Added chmod to fix mysterious permission issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
bendory committed May 19, 2017
1 parent ce12c0e commit 4e9af4d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bazel/cloudbuild.yaml
Expand Up @@ -8,6 +8,11 @@ steps:
- name: 'gcr.io/$PROJECT_ID/bazel'
args: ['version']

# Not clear why we need this; at least some users get permission errors on the
# next build step unless we do this first.
- name: 'ubuntu'
args: ['chmod', 'a+r', '-R', '.']

# Build the example.
- name: 'gcr.io/$PROJECT_ID/bazel'
args: ['run', '//subdir:target', '--verbose_failures']
Expand Down

0 comments on commit 4e9af4d

Please sign in to comment.