我想向 deploy/before_bundle.rb 钩子添加一些消息,以便在部署时将进度的额外详细信息输出到命令行。这可能吗?
问问题
224 次
2 回答
1
你有没有尝试过:
run "echo 'this will make it to the terminal'"
我只是猜测这可能会奏效。
于 2012-05-08T21:38:26.190 回答
1
这只是 Ruby,所以puts
很好
puts "About to run a command"
run! "/bin/some/command"
puts "Finished"
# Sometimes the order seems off so try
$stderr.puts "About to run a command"
$stderr.flush
于 2012-09-27T15:46:41.317 回答