Skip to content

Commit

Permalink
Merge pull request Homebrew#6864 from dawidd6/patch-1
Browse files Browse the repository at this point in the history
Remove 'run' from generic binaries list
  • Loading branch information
MikeMcQuaid committed Dec 23, 2019
2 parents af98c15 + 690b7a3 commit 13f508d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/formula_cellar_checks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def check_non_executables(bin)
def check_generic_executables(bin)
return unless bin.directory?

generic_names = %w[run service start stop]
generic_names = %w[service start stop]
generics = bin.children.select { |g| generic_names.include? g.basename.to_s }
return if generics.empty?

Expand Down

0 comments on commit 13f508d

Please sign in to comment.