diff options
author | Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> | 2018-01-25 12:23:09 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-25 04:23:08 +0100 |
commit | 4a974c6db1168453a6df8d2e1a7b8ebcbca60031 (patch) | |
tree | 076767bd0768d192c5eb61d7ac76b05c87cdbfa7 | |
parent | a3c0a2037314f105e807f9ede4210066a1524229 (diff) |
Do not require sudo on Travis CI (#6356)
The issue which the workaround for is now addressed: https://github.com/travis-ci/travis-ci/issues/7941#issuecomment-310667894 > We've pushed out new stable trusty images to production with a patch.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 496315558..f27be2a39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ cache: - public/packs-test - tmp/cache/babel-loader dist: trusty -sudo: required +sudo: false branches: only: - master |