This commit is contained in:
BoHung Chiu 2022-01-14 09:08:06 +08:00
parent b27409fa3f
commit 5dd9666ca2
1 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,8 @@ namespace :exec_commands do
@command_i18n = @command_i18n.gsub("{{#{k}}}",@command_trans[k])
end
command = command.gsub("{{rails_env}}",rails_env)
command = command.gsub("{{full_site_path}}",@site_construct.full_site_path)
command = command.gsub("{{site_name}}",@site_construct.site_name)
exec_ssh_command_by_sudo_and_see_output(ssh,"bash -l -c 'cd #{@site_construct.path}/#{@site_construct.site_name};#{command}'", update_flag)
end
end