diff options
| author | Jack Nagel | 2012-02-26 15:01:01 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-26 15:01:01 -0600 |
| commit | 8d307119bd4f8d8a683d4fbb7b3baa166db50b37 (patch) | |
| tree | 3c5eeff11ff1fadd33ab3a2b65d8a1b04adf0ef4 | |
| parent | a7554d1fa6c8675ffb577bddf280e50805ba1a9b (diff) | |
| download | homebrew-8d307119bd4f8d8a683d4fbb7b3baa166db50b37.tar.bz2 | |
Fix IO redirection in ENV.xcrun
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Homebrew/extend/ENV.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb index 996f69494..5b002221b 100644 --- a/Library/Homebrew/extend/ENV.rb +++ b/Library/Homebrew/extend/ENV.rb @@ -94,7 +94,7 @@ module HomebrewEnvExtension def xcrun tool if File.executable? "/usr/bin/#{tool}" "/usr/bin/#{tool}" - elsif not MacOS.xctools_fucked? and system "/usr/bin/xcrun -find #{tool} 2>1 1>/dev/null" + elsif not MacOS.xctools_fucked? and system "/usr/bin/xcrun -find #{tool} 1>/dev/null 2>&1" # xcrun was provided first with Xcode 4.3 and allows us to proxy # tool usage thus avoiding various bugs "/usr/bin/xcrun #{tool}" |
