aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-03-23 21:01:50 -0400
committerJack Nagel2015-03-23 21:01:50 -0400
commit86006ba36b8a40b6603bb259d40f88c89272ddc1 (patch)
tree8d456fa2cd7fae224e37bda1c3164bd0f9e17abb /Library
parent3c212ebc3ff1b64a1d8412547e35780fb62420ac (diff)
downloadbrew-86006ba36b8a40b6603bb259d40f88c89272ddc1.tar.bz2
Go through regular logic when installing a file
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index 6e7a8ef58..6f9f4d069 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -383,7 +383,7 @@ class Pathname
dst.mkpath
Pathname.glob("#{self}/*") do |file|
next if file.directory?
- dst.install_p file
+ dst.install(file)
new_file = dst+file.basename
file.write_env_script(new_file, env)
end