This commit is contained in:
2024-07-05 12:05:51 -03:00
parent 2644cd4b86
commit 0ffd562cca
2 changed files with 5 additions and 7 deletions

View File

@ -58,8 +58,8 @@ module Funko
tar.each_entry do |entry|
dst = Path.new(tmp_dir, entry.name)
Dir.mkdir_p dst.dirname
File.open(Path.new(tmp_dir, entry.name), "w") do |dst|
IO.copy entry.io, dst
File.open(Path.new(tmp_dir, entry.name), "w") do |outf|
IO.copy entry.io, outf
end
end
end
@ -150,7 +150,7 @@ module Funko
output: output,
error: output,
)
Log.debug { "faaso output: #{output.to_s}" }
Log.debug { "faaso output: #{output}" }
result = {
"exit_code" => status.exit_code,
"output" => output.to_s,