mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
10 lines
302 B
Ruby
10 lines
302 B
Ruby
class Github < Cask
|
|
url 'https://central.github.com/mac/latest'
|
|
homepage 'http://mac.github.com'
|
|
version 'latest'
|
|
no_checksum
|
|
link 'GitHub.app'
|
|
after_install do
|
|
system '/usr/bin/defaults', 'write', 'com.github.GitHub', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|