From ebbc2e5b3fae09f6497723a2f0cb12c2248c082e Mon Sep 17 00:00:00 2001 From: Max Howell Date: Fri, 9 Mar 2012 12:04:01 +0000 Subject: [PATCH] Use full path to stty --- install_homebrew.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_homebrew.rb b/install_homebrew.rb index 572b315c4f..fa95e381e9 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