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
commit0e30ae9c22702bef29cf0898658a65e7d680e48b (patch)
tree79d07d3c637285f5d2b2d30b700cbbcb3414485e /Library
parent7e2eb6fdf8ec88b54ecf8528e173e1abedb5b09d (diff)
downloadhomebrew-0e30ae9c22702bef29cf0898658a65e7d680e48b.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?