
We added the `--all` flag (now renamed to `--eval-all`) for various commands for this behaviour so let's start deprecating this. Also, introduce a `HOMEBREW_EVAL_ALL` environment variable to use the existing, less secure, behaviour by default and avoid passing `--eval-all` everywhere.
11 lines
134 B
Ruby
11 lines
134 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
module Readall
|
|
class << self
|
|
def valid_casks?(_casks)
|
|
true
|
|
end
|
|
end
|
|
end
|