aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-06-21 06:57:07 -0700
committerAdam Vandenberg2011-06-21 07:27:13 -0700
commitc5923168d6f7f3360ff3e72727ce4610e8b72f3d (patch)
treed0a89248012203fc85023f969683ca108c5ef5b2 /Library
parent77e01d69ec1a934631fb5b029a2287b0a07db601 (diff)
downloadbrew-c5923168d6f7f3360ff3e72727ce4610e8b72f3d.tar.bz2
Move -- higher in argument list
A spurious "--" argument was being passed to the installer script.
Diffstat (limited to 'Library')
-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)