diff options
| author | Mike McQuaid | 2018-01-07 09:41:32 +0000 |
|---|---|---|
| committer | GitHub | 2018-01-07 09:41:32 +0000 |
| commit | 4438fe117592475d4ddf255c064d2fd95b541a90 (patch) | |
| tree | a7e4c366dfb727820b211d48e2d41746aead2b12 | |
| parent | 069b61029b397b73ead0efe9d4ab4cbb17adf359 (diff) | |
| parent | 8a419b47426728c03c3835c1aafa72b5ecf56f4f (diff) | |
| download | brew-4438fe117592475d4ddf255c064d2fd95b541a90.tar.bz2 | |
Merge pull request #3635 from commitay/audit-sort
audit: pass explicit sort to handle APFS
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 4982bfbc5..16eb03dbc 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -102,7 +102,7 @@ module Homebrew # Check style in a single batch run up front for performance style_results = check_style_json(files, options) - ff.each do |f| + ff.sort.each do |f| options = { new_formula: new_formula, strict: strict, online: online } options[:style_offenses] = style_results.file_offenses(f.path) fa = FormulaAuditor.new(f, options) |
