Commit 011e5b6a authored by Ed Reel's avatar Ed Reel Committed by GitHub

Fix crew dependency algorithm (#5722)

Bump crew version
parent b3c9b32e
...@@ -968,7 +968,8 @@ def resolve_dependencies ...@@ -968,7 +968,8 @@ def resolve_dependencies
depends = nil depends = nil
File.open("#{CREW_PACKAGES_PATH}#{dep}.rb") do |f| File.open("#{CREW_PACKAGES_PATH}#{dep}.rb") do |f|
f.each_line do |line| f.each_line do |line|
if line =~ /depends_on/ found = line[/depends_on/] if line.ascii_only?
if found
depends = true depends = true
break break
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment