diff --git a/lib/tasks/exec_command.rake b/lib/tasks/exec_command.rake index e1fe780..0f432c8 100644 --- a/lib/tasks/exec_command.rake +++ b/lib/tasks/exec_command.rake @@ -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