aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-06-21 06:57:07 -0700
committerAdam Vandenberg2011-06-21 07:27:13 -0700
commit69f13cdd4f069b7e4b0334cb729e3f07e0c83070 (patch)
treed94fb4588a037cb43b140371d2a67b2ae3e9e967
parent32d9b9180ee5903821813483dc2015feacef3143 (diff)
downloadhomebrew-69f13cdd4f069b7e4b0334cb729e3f07e0c83070.tar.bz2
Move -- higher in argument list
A spurious "--" argument was being passed to the installer script.
-rw-r--r--Library/Homebrew/formula_installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 4c2ec9d4b..57f93fdee 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -75,8 +75,8 @@ class FormulaInstaller
'/usr/bin/ruby',
'-I', Pathname.new(__FILE__).dirname,
'-rinstall',
- f.path,
'--',
+ f.path,
*ARGV.options_only
rescue Exception => e
Marshal.dump(e, write)