aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2016-01-01 19:49:43 -0400
committerMisty De Meo2016-01-01 20:10:34 -0400
commitc6f45a9e06534787d1b5256e005b35cb9e75d0cd (patch)
treee3893e302139c016ad93fd3927a59a99d701a737 /Library
parent575b75fced18ef98f110db0bf8efb1f6561049db (diff)
downloadbrew-c6f45a9e06534787d1b5256e005b35cb9e75d0cd.tar.bz2
DependencyCollector: add lua51 language module
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dependency_collector.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dependency_collector.rb b/Library/Homebrew/dependency_collector.rb
index cb45c2f49..b16a9653f 100644
--- a/Library/Homebrew/dependency_collector.rb
+++ b/Library/Homebrew/dependency_collector.rb
@@ -18,7 +18,7 @@ require "set"
class DependencyCollector
# Define the languages that we can handle as external dependencies.
LANGUAGE_MODULES = Set[
- :lua, :perl, :python, :python3, :ruby
+ :lua, :lua51, :perl, :python, :python3, :ruby
].freeze
CACHE = {}