Cask is not configured
See original GitHub issueAfter the latest PR #36 error at configuration of cask appears:
It looks like there is a new conflicting package:
Seems like there is now a font-sudo Cask, so this check breaks cask install:
if ‘sudo’ in result: return ‘Config’ I guess this check is there in case you changed HOMEBREW_CASK_OPTS? Maybe there’s a better way to check for that? by @ErikMinekus
This is a not so elegant solution I made. Probably breaks the purpose of the if in the first place:
if 'sudo' in result:
if 'font-sudo' not in result:
return 'Config'
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Homebrew cask option not recognized?
As of 2021, the answer to this question for me was that instead of brew cask install myprogram. I should run: brew install...
Read more >brew cask list command not work #36387
Output of your command with --verbose --debug. brew cask list --verbose --debug Error: Cask 'flash' is unavailable: No Cask with this name exists....
Read more >Installation — Cask 0.8.4
This document guides you through the installation of Cask. Prerequisites¶. Cask requires GNU Emacs 24 and Python 2.6 or later on a Unix...
Read more >Cask · macOS Setup Guide
Homebrew-Cask extends Homebrew and allows you to install large binary files via a command-line tool. You can for example install applications like Google...
Read more >Homebrew casks are not updating, how can I fix this?
As said by Melonee in the comments, Homebrew Cask by default won't automatically update apps with built-in update function.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That is true, cask does come with brew. So if brew.py has an infrastructure check then this if is just a redundancy.
Should be fixed in
v5.0
.