1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Fix "input stream is empty" errors from HighLine on prompt

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@7202 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2007-07-21 20:47:20 +00:00
parent 8fd6e73a2d
commit 54af9ca4f0
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fix "input stream is empty" errors from HighLine on prompt [Jamis Buck]
* Added "synchronous_connect" setting to try and work around SFTP hangs for certain users [Jamis Buck]
* Auto-require the SSH shell service, to avoid race conditions [Jamis Buck]

View file

@ -1,5 +1,9 @@
require 'highline'
# work around problem where HighLine detects an eof on $stdin and raises an
# error.
HighLine.track_eof = false
module Capistrano
class CLI
module UI