diff options
| author | Max Howell | 2012-03-09 12:04:01 +0000 |
|---|---|---|
| committer | Max Howell | 2012-03-09 12:08:51 +0000 |
| commit | ebbc2e5b3fae09f6497723a2f0cb12c2248c082e (patch) | |
| tree | c6637ce465257573c17f89af26aef0262eb402bc | |
| parent | ca5bccd2d984589ad0f5abdebb215bc1f6059eae (diff) | |
| download | brew-ebbc2e5b3fae09f6497723a2f0cb12c2248c082e.tar.bz2 | |
Use full path to stty
| -rw-r--r-- | install_homebrew.rb | 4 |
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 |
