We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Posting here for those googlers who run into this issue:
This is the same issue as upstream Homebrew issue #49716. Upstream recommends this one liner to fix:
find "$(brew --prefix)/Caskroom/"*'/.metadata' -type f -name '*.rb' | xargs grep 'EOS.undent' --files-with-matches | xargs sed -i '' 's/EOS.undent/EOS/'
The regex pattern match here misses one instance in this codebase, and does not work for the truecrypt Cask in this Tap.
truecrypt
Therefore, for this Cask run the following:
find "$(brew --prefix)/Caskroom/"*'/.metadata' -type f -name '*.rb' | xargs grep 'EOPATCH.undent' --files-with-matches | xargs sed -i '' 's/EOPATCH.undent/EOPATCH/'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Posting here for those googlers who run into this issue:
This is the same issue as upstream Homebrew issue #49716. Upstream recommends this one liner to fix:
The regex pattern match here misses one instance in this codebase, and does not work for the
truecrypt
Cask in this Tap.Therefore, for this Cask run the following:
The text was updated successfully, but these errors were encountered: