-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
New issue
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
Update bankid cask to use latest #6002
Conversation
Hi! Try running For very tricky cases, we use a I had added a |
fetch doesn't say much
and install goes like
it looks like the pkg is expanded automatically... current cask
|
Thanks!
before_install do
system '/bin/mv', '--', destination_path.join('bankid-latest'), destination_path.join('bankid-latest.pkg')
end
install 'bankid-latest.pkg' (It does at least get unpacked by the current code, because it is recognized as a generic |
AFK now but the destination path is not homebrew's cache path
|
Referencing the destination path is fine. But we also need to say container_type :naked
before_install do
system '/bin/mv', '--', destination_path.join('FileDownloader'), destination_path.join('bankid-latest.pkg')
end |
f307a2c
to
5d998bc
Compare
Tested your changes, and they work! |
Thanks for the contribution! |
Update bankid cask to use latest
Do not merge!
The intent is to use the latest bankid version, but I don't master brew/cask so I'm filing a placeholder PR.
I didn't quite understand what would be the argument for
install
, given that the pkg filename is unknown.