diff options
author | Chris Johnson <chrisjohnsonmail@gmail.com> | 2018-12-06 15:26:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 15:26:28 -0600 |
commit | d9251df84951768fa74cc0e01c3a76dbc1b2b0b1 (patch) | |
tree | 6e500398e0f5bb8b015bf8da776e552ae26285cd /.travis.yml | |
parent | 39c09043b83ea6a46407468c4733271334cdf1b4 (diff) | |
download | googletest-d9251df84951768fa74cc0e01c3a76dbc1b2b0b1.tar.gz googletest-d9251df84951768fa74cc0e01c3a76dbc1b2b0b1.tar.bz2 googletest-d9251df84951768fa74cc0e01c3a76dbc1b2b0b1.zip |
fix: Remove global chmod from Travis
Removed global chmod +x for Travis scripts in favor of just applying it to PlatformIO builds.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 74e1b8f1..fd8f7c65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ matrix: dist: trusty sudo: required group: deprecated-2017Q3 + before_install: chmod -R +x ./ci/*platformio.sh install: ./ci/install-platformio.sh script: ./ci/build-platformio.sh - os: linux @@ -50,9 +51,6 @@ matrix: env: BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11 if: type != pull_request -before_install: - - chmod -R +x ./ci/*.sh - # These are the install and build (script) phases for the most common entries in the matrix. They could be included # in each entry in the matrix, but that is just repetitive. install: |