aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkalaker2014-01-19 21:08:11 -0500
committerMike McQuaid2014-01-21 08:52:36 -0800
commit32a3498abebd3624323511152076da69c3b29ab8 (patch)
tree0e1db6634820bcfccb499214ab8a5f5aa6cc66da
parent1157c342a35fa8fe79349572e658d13e23584e97 (diff)
downloadhomebrew-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-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 743a99cfd..bc862d995 100755
--- a/install
+++ b/install
@@ -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