Merge pull request #9335 from jonchang/formula-type

formula: widen type for system args
This commit is contained in:
Markus Reiter 2020-12-02 00:47:41 +01:00 committed by GitHub
commit fc2a3f69b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1982,7 +1982,7 @@ class Formula
#
# # If there is a "make install" available, please use it!
# system "make", "install"</pre>
sig { params(cmd: T.any(String, Pathname), args: T.any(String, Pathname)).void }
sig { params(cmd: T.any(String, Pathname), args: T.any(String, Pathname, Integer)).void }
def system(cmd, *args)
verbose_using_dots = Homebrew::EnvConfig.verbose_using_dots?