This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auditors: @aekeus Fix #7896 By ignoring by file type we can remove a lot of the redundant rules and catch things automatically as we add deps. I found this script on SO which lists all file types recursively `find . -type f | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u | gvim` http://stackoverflow.com/a/1842270/3153 After getting that list I exluded the things I think we need, and then bisected when there was a problem starting the browser.
- Loading branch information
ff34277
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
++ nice