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
commit2ec86641deab37baafe7a5b5adedec3667f7f356 (patch)
tree87fc44d26d48822c4e7966b4142b5dbb26242810 /Library
parentc09f54afb98dea37798d5e47b48c4b5160ba41b5 (diff)
downloadhomebrew-2ec86641deab37baafe7a5b5adedec3667f7f356.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