diff options
author | Ian Lewis <ianlewis@google.com> | 2020-01-30 23:32:12 -0500 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2020-03-11 09:21:05 +0900 |
commit | 5f723ac601e8ea6eb3216f60fce49b771ef87e0a (patch) | |
tree | 01c3c122be9f39bbf554b0e842398f3cce5ae3f8 /.gitignore | |
parent | 6eb4ea30088a19428d6dfde965985e844b7a9a2a (diff) |
Fix corrupted bazel install errors.
Previously /tmp/gvisor-website was used for the bazel output_user_root
but the host could delete a subset of the files under /tmp causing it to
become corrupted.
This commit updates the Makefile to use the bazel_user_root directory
under the repository root directory for caching bazel packages.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index ec372978f..dd1346c01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ bin/ +bazel_user_root/ public/ resources/ node_modules/ |