Skip to content

Commit

Permalink
Maintenance: Verify gem permissions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed Apr 29, 2024
1 parent a2820d3 commit 9c01b03
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitlab/ci/lint.yml
Expand Up @@ -68,6 +68,9 @@
- bundle exec brakeman -o /dev/stdout -o tmp/brakeman-report.html
- echo "Checking if yard can generate documentation…"
- bundle exec yard --no-output --no-progress
- echo "Verify that vendored gems are not world writable"
- GEM_FILES=$(find vendor/ -name "*.rb" -perm -002)
- if [[ ! -z "$GEM_FILES" ]]; then echo $GEM_FILES; exit 1; fi # Raise error if files were found.
- echo "Finally, ensure cleanup.sh passes…"
- script/build/cleanup.sh

Expand Down

0 comments on commit 9c01b03

Please sign in to comment.