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
cask spec has a binary dsl, but most of cask cant use because it needs a wrap script, can cask provide a command to wrap and link it?
binary
for command line user
brew cask link google-chrome create a bash script in /usr/local/bin and put wrap script. '/Applicaiton/Google Chrome' "$@"
brew cask link google-chrome
/usr/local/bin
'/Applicaiton/Google Chrome' "$@"
now you can type google-chrome in command line
google-chrome
The text was updated successfully, but these errors were encountered:
Implementing shimscripts is an open issue. #18809
Currently we use preflight to write a shimscript but this discouraged and only used in specific situations.
preflight
https://github.com/caskroom/homebrew-cask/blob/534f255c7bc9eb6c8153c86fc22ed2c821c8cff2/Casks/vlc.rb#L14-L24
Sorry, something went wrong.
@commitay I means do this wrap by user if the package maintainer does 'nt provider it in cask spec.
No branches or pull requests
Description of feature/enhancement
cask spec has a
binary
dsl, but most of cask cant use because it needs a wrap script, can cask provide a command to wrap and link it?Justification
for command line user
Example use case
brew cask link google-chrome
create a bash script in
/usr/local/bin
and put wrap script.'/Applicaiton/Google Chrome' "$@"
now you can type
google-chrome
in command lineThe text was updated successfully, but these errors were encountered: