diff options
| author | Misty De Meo | 2014-02-21 15:43:32 -0800 | 
|---|---|---|
| committer | Misty De Meo | 2014-02-21 20:54:23 -0800 | 
| commit | 3477c88532fc9e7848d172772f32a07112f4de1d (patch) | |
| tree | 798519b46cf7fb480d2864d735986b4353ca689e | |
| parent | c44fb1b78c945c71854b669e6bcfbf5eb5a45724 (diff) | |
| download | homebrew-3477c88532fc9e7848d172772f32a07112f4de1d.tar.bz2 | |
Unset GEM_HOME and GEM_PATH before running brew.rb
This was reported in Tigerbrew, but is a worthwhile fix everywhere.
Fixes mistydemeo/tigerbrew#177.
| -rwxr-xr-x | bin/brew | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -15,6 +15,11 @@ fi  BREW_LIBRARY_DIRECTORY=$(cd "$BREW_FILE_DIRECTORY"/../Library && pwd -P) +# Users may have these set, pointing the system Ruby +# at non-system gem paths +unset GEM_HOME +unset GEM_PATH +  BREW_SYSTEM=$(uname -s | tr "[:upper:]" "[:lower:]")  if [ "$BREW_SYSTEM" = "darwin" ]  then | 
