Rylan Polster
Rylan Polster
@hyuraku and @p-linnane, thanks for taking the initiative on this! I think an issue in homebrew/cask would be great, but only once we've started the process and made sure all...
We will once all casks are migrated to use `on_monterey` and friends. Only then (and maybe after some more fixes) will we be able to load casks from the JSON...
I think this overlaps with what @SMillerDev is doing in https://github.com/Homebrew/brew/pull/13746. That PR will allow `--except repository` to be passed to `brew audit` which gives more complete flexibility on this...
Now that [autocorrection has been added](https://github.com/rubocop/rubocop/pull/10862), I'm running into an edge case. If an empty `if` statement also has an empty `else`[^1], the autocorrection totally breaks: ```ruby # frozen_string_literal: true...
> Another option is we use something like the tree API instead: https://docs.github.com/en/rest/reference/git#get-a-tree https://api.github.com/repos/homebrew/homebrew-cask/git/trees/master?recursive=1 > > or the repo contents API: https://docs.github.com/en/rest/reference/repos#get-repository-content https://api.github.com/repos/homebrew/homebrew-cask/contents/Casks Since we only search filenames anyway, this...
> @Rylan12 I thought about this, but since they were already separate I assumed there was a design choice in the past that we didn't want them to share. I...
This is really just a bug in `brew list`. We currently [return early](https://github.com/Homebrew/brew/blob/e217fd35c28ca223379bb6044a90736504c7eed2/Library/Homebrew/cmd/list.rb#L73-L79) if `HOMEBREW_CELLAR` doesn't exist, but this ignores the case where there are casks installed and not formulae....
## 1. Should Homebrew organization repository branches be renamed? Yes. I believe that this is something we should strive to do. However, our priority should be for Homebrew to continue...
Thanks, I did forget about that. I'll add it to the list above. > Or you can wait that linuxbrew-core is gone, but that might take another 6 months. This...
`brew tap --repair` should fix that, and `brew update` should detect the rename and instruct a user to run `brew tap --repair`. At least, that's what #10423 was supposed to...