在Capistrano 2中,你可以这样做:
set :default_environment, {
'PATH' => '$PATH:/opt/rubies/ruby-2.1.1/bin'
}
是否有相应的上限3?
答案 0 :(得分:15)
答案 1 :(得分:0)
也许有点晚了但是......
Capistrano 3使用specia语法进行环境
on roles :app do
with some_env: "foobar" do
...
end
end
在上面的示例中,在with / end块中,capistrano将环境变量SOME_ENV设置为“foobar”
请参阅https://github.com/capistrano/sshkit#users-working-directories-environment-variables-and-umask