mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
22 lines
350 B
Ruby
22 lines
350 B
Ruby
![]() |
require "hbc/artifact/moved"
|
||
|
|
||
|
class Hbc::Artifact::Qlplugin < Hbc::Artifact::Moved
|
||
|
def self.artifact_english_name
|
||
|
"QuickLook Plugin"
|
||
|
end
|
||
|
|
||
|
def install_phase
|
||
|
super
|
||
|
reload_quicklook
|
||
|
end
|
||
|
|
||
|
def uninstall_phase
|
||
|
super
|
||
|
reload_quicklook
|
||
|
end
|
||
|
|
||
|
def reload_quicklook
|
||
|
@command.run!("/usr/bin/qlmanage", args: ["-r"])
|
||
|
end
|
||
|
end
|