aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/drush.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/drush.rb')
-rw-r--r--Library/Formula/drush.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/drush.rb b/Library/Formula/drush.rb
index e9155c2ad..0617d3843 100644
--- a/Library/Formula/drush.rb
+++ b/Library/Formula/drush.rb
@@ -13,8 +13,8 @@ class Drush < Formula
head 'git://git.drupal.org/project/drush.git'
def install
- prefix.install Dir['*'] # No lib folder, so this is OK for now.
- bin.install_symlink prefix+'drush'
- DrushMake.new.brew { (prefix+'commands/drush_make').install Dir['*'] }
+ libexec.install Dir['*']
+ bin.install_symlink libexec+'drush'
+ DrushMake.new.brew { (libexec+'commands/drush_make').install Dir['*'] }
end
end