This commit is contained in:
BoHung Chiu 2022-04-29 15:45:06 +08:00
parent 1d7149180c
commit 4b12eff642
1 changed files with 5 additions and 1 deletions

View File

@ -158,7 +158,11 @@ namespace :exec_commands do
end
def update_infos_for_exec(info,update_last=false,update_array=false)
return if @site_construct.nil?
info.encode!("UTF-8", :invalid => :replace, :undef => :replace, :replace => '')
if(update_array)
info.map!{|i| i.encode!("UTF-8", :invalid => :replace, :undef => :replace, :replace => '')}
else
info.encode!("UTF-8", :invalid => :replace, :undef => :replace, :replace => '')
end
if update_last && !@site_construct.infos.empty?
@site_construct.infos[-1] += info.to_s
else