diff options
| author | kalaker | 2014-01-19 21:08:11 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-21 08:52:36 -0800 |
| commit | 32a3498abebd3624323511152076da69c3b29ab8 (patch) | |
| tree | 0e1db6634820bcfccb499214ab8a5f5aa6cc66da | |
| parent | 1157c342a35fa8fe79349572e658d13e23584e97 (diff) | |
| download | homebrew-32a3498abebd3624323511152076da69c3b29ab8.tar.bz2 | |
install: ENTER to RETURN
Since users will be on OS X, most will have a return key instead of an
enter key on their keyboard.
Closes #26042.
| -rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ end def wait_for_user puts - puts "Press ENTER to continue or any other key to abort" + puts "Press RETURN to continue or any other key to abort" c = getc # we test for \r and \n because some stuff does \r instead abort unless c == 13 or c == 10 |
