aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2012-03-09 12:04:01 +0000
committerMax Howell2012-03-09 12:08:51 +0000
commitebbc2e5b3fae09f6497723a2f0cb12c2248c082e (patch)
treec6637ce465257573c17f89af26aef0262eb402bc
parentca5bccd2d984589ad0f5abdebb215bc1f6059eae (diff)
downloadbrew-ebbc2e5b3fae09f6497723a2f0cb12c2248c082e.tar.bz2
Use full path to stty
-rw-r--r--install_homebrew.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/install_homebrew.rb b/install_homebrew.rb
index 572b315c4..fa95e381e 100644
--- a/install_homebrew.rb
+++ b/install_homebrew.rb
@@ -71,10 +71,10 @@ def sudo *args
end
def getc # NOTE only tested on OS X
- system "stty raw -echo"
+ system "/bin/stty raw -echo"
STDIN.getc
ensure
- system "stty -raw echo"
+ system "/bin/stty -raw echo"
end
####################################################################### script