Skip to content
Snippets Groups Projects
Commit cda83428 authored by Iain Beeston's avatar Iain Beeston Committed by Adam Vandenberg
Browse files

add brew linkapps --system


Added an option to linkapps to allow linking to /Applications rather
than ~/Applications

Closes Homebrew/homebrew#18196.

Signed-off-by: default avatarAdam Vandenberg <flangy@gmail.com>
parent 69c8ed1a
No related branches found
No related tags found
No related merge requests found
# Links any Applications (.app) found in installed prefixes to ~/Applications
require "formula"
HOME_APPS = File.expand_path("~/Applications")
TARGET_DIR = ARGV.include?("--system") ? "/Applications" : File.expand_path("~/Applications")
unless File.exist? HOME_APPS
opoo "#{HOME_APPS} does not exist, stopping."
puts "Run `mkdir ~/Applications` first."
unless File.exist? TARGET_DIR
opoo "#{TARGET_DIR} does not exist, stopping."
puts "Run `mkdir #{TARGET_DIR}` first."
exit 1
end
......@@ -17,7 +17,7 @@ HOMEBREW_CELLAR.subdirs.each do |keg|
Dir["#{f.installed_prefix}/*.app", "#{f.installed_prefix}/bin/*.app", "#{f.installed_prefix}/libexec/*.app"].each do |p|
puts "Linking #{p}"
appname = File.basename(p)
target = HOME_APPS+"/"+appname
target = TARGET_DIR+"/"+appname
if File.exist? target
if File.symlink? target
system "rm", target
......@@ -25,9 +25,9 @@ HOMEBREW_CELLAR.subdirs.each do |keg|
onoe "#{target} already exists, skipping."
end
end
system "ln", "-s", p, HOME_APPS
system "ln", "-s", p, TARGET_DIR
end
end
end
puts "Finished linking. Find the links under ~/Applications."
puts "Finished linking. Find the links under #{TARGET_DIR}."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment