2016-10-19 7 views
2

Capistranoを使用しているときにパスワードがクリアに表示されないようにするにはどうすればよいですか?私はMac El CaptitanでRails 4.2.7を使用しています。すべてのアイデアはパスワードを表示しないようにするにはどうすればよいですか?

localhost:myproject davea$ sudo gem install highline 
Successfully installed highline-1.7.8 
Parsing documentation for highline-1.7.8 
Done installing documentation for highline after 0 seconds 
1 gem installed 
localhost:myproject davea$ cap production deploy:initial 
Text will be echoed in the clear. Please install the HighLine or Termios libraries to suppress echoed text. 
[email protected]’s password:asdf 

...メッセージは、私がやったハイラインの宝石をインストールすると、それが表示され、パスワードを抑制しないのですか?

答えて

1

あなたのGemfileにハイラインの宝石追加:実行後

group :development do 
    gem 'highline' 
end 

を:

bundle install 
関連する問題