aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-21 09:03:51 -0700
committerAdam Vandenberg2014-05-21 09:03:51 -0700
commitbba2b7616735fe5503923c908cc36c9222b40393 (patch)
treee2e8604f132700311a3d3fcd2ca1802b05dd9368 /Library
parent4f014836f2a5603a05a6de686ef4a298706111c9 (diff)
downloadbrew-bba2b7616735fe5503923c908cc36c9222b40393.tar.bz2
add start and stop as generic executables
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_cellar_checks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb
index a37e6a2d2..e1341303b 100644
--- a/Library/Homebrew/formula_cellar_checks.rb
+++ b/Library/Homebrew/formula_cellar_checks.rb
@@ -91,7 +91,7 @@ module FormulaCellarChecks
def check_generic_executables bin
return unless bin.directory?
- generic_names = %w[run service]
+ generic_names = %w[run service start stop]
generics = bin.children.select { |g| generic_names.include? g.basename.to_s }
return if generics.empty?