diff options
| -rwxr-xr-x | bin/brew | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -298,8 +298,11 @@ begin our_deps = [] checked = {} to_check = [name] + stop_early = false + + until to_check.empty? or stop_early + stop_early = ARGV.include?("-1") or ARGV.include?("--1") - until to_check.empty? item = to_check.pop checked[item] = true |
