我使用 capistrano 进行部署,使用 bitbucket 托管我的 mercurial 存储库, deploy.rb 脚本工作正常,但问题是我第一次从 bitbucket 克隆时,它会抛出这个异常,是/否 continue 事情,这当然会破坏自动化过程。
这就是发生的事情:
running ssh hg@bitbucket.org "hg -R vireton-dev/forecasts serve --stdio"
The authenticity of host 'bitbucket.org (207.223.240.181)' can't be established.
RSA key fingerprint is 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40.
Are you sure you want to continue connecting (yes/no)?
我在我的脚本中使用这些行:
default_run_options[:pty] = true
ssh_options[:forward_agent] = true
set :scm_verbose, true
我做错什么了吗?我怎样才能摆脱那个提示?
谢谢你的帮助!