Capistrano Bundler:如何让它变得冗长?
Capistrano Bundler: How to make it verbose?
当运行 bundle 命令时,是否可以让Capistrano
打印bundler 的输出?
在本地机器上它通常打印 "using rails 4.2.1" 等,我希望在部署到我的实时服务器时也能有同样的结果。
这是因为 Capistrano 默认使用带选项 --deployment --quiet
的 Bundler。所以 --quiet
抑制了所需的输出。
将以下行添加到 Capistrano 的生产配置中:
set :bundle_flags, '--deployment'
您可以了解有关 Capistranos Bundler plugin from its repository 的更多信息。
当运行 bundle 命令时,是否可以让Capistrano
打印bundler 的输出?
在本地机器上它通常打印 "using rails 4.2.1" 等,我希望在部署到我的实时服务器时也能有同样的结果。
这是因为 Capistrano 默认使用带选项 --deployment --quiet
的 Bundler。所以 --quiet
抑制了所需的输出。
将以下行添加到 Capistrano 的生产配置中:
set :bundle_flags, '--deployment'
您可以了解有关 Capistranos Bundler plugin from its repository 的更多信息。