Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
Change .ci/* scripts to be non-executable (#158)
Browse files Browse the repository at this point in the history
fixes #157
Reviewed-by: @brcolow
  • Loading branch information
kevinrushforth authored Aug 21, 2018
1 parent 50d28b6 commit c33a624
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Empty file modified .ci/before_install.sh
100755 → 100644
Empty file.
Empty file modified .ci/script.sh
100755 → 100644
Empty file.
5 changes: 2 additions & 3 deletions .github/pr-check-whitespace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ fi
ROOTDIR=$(git rev-parse --show-toplevel)
cd $ROOTDIR

# Check all files changes as part of this pull request, excluding the .ci/
# directory which has executable shell scripts
# Check all files changed as part of this pull request
# FIXME: maybe remove the -v option at some point
bash .github/pr-list-files.sh | grep -v ^.ci/ | bash tools/scripts/checkWhiteSpace -S -x -v
bash .github/pr-list-files.sh | bash tools/scripts/checkWhiteSpace -S -x -v
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ before_script:
# run on xvfb screen (for linux).
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then export DISPLAY=:99.0 && sh -e /etc/init.d/xvfb start; fi

before_install: .ci/before_install.sh
before_install: bash .ci/before_install.sh

# skip install stage.
install: true

script: .ci/script.sh
script: bash .ci/script.sh

notifications:
email: false
Expand Down

0 comments on commit c33a624

Please sign in to comment.