mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
13 lines
375 B
Ruby
13 lines
375 B
Ruby
class Github < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'https://central.github.com/mac/latest'
|
|
homepage 'http://mac.github.com'
|
|
|
|
link 'GitHub.app'
|
|
binary 'GitHub.app/Contents/MacOS/github_cli', :target => 'github'
|
|
postflight do
|
|
system '/usr/bin/defaults', 'write', 'com.github.GitHub', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|