mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
10 lines
212 B
Ruby
10 lines
212 B
Ruby
class Cask::Artifact::Qlplugin < Cask::Artifact::Symlinked
|
|
def self.artifact_english_name
|
|
'QuickLook Plugin'
|
|
end
|
|
|
|
def install
|
|
super
|
|
@command.run!('/usr/bin/qlmanage', :args => ['-r'])
|
|
end
|
|
end
|