You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
314 B
12 lines
314 B
class Cask::CLI::Unlinkapps
|
|
def self.run(*args)
|
|
casks_to_link = args.empty? ? Cask.installed : args
|
|
casks_to_link.each do |cask_name|
|
|
Cask::AppLinker.new(Cask.load(cask_name)).unlink
|
|
end
|
|
end
|
|
|
|
def self.help
|
|
"removes symlinks from cask-installed .app files from ~/Applications"
|
|
end
|
|
end
|
|
|