mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Log output of compression tools after run
This commit is contained in:
parent
803c8c0701
commit
d11bb16e88
1 changed files with 10 additions and 4 deletions
|
@ -85,17 +85,23 @@ local function run(program: string, args: { string }): string
|
|||
local result = process.spawn(program, args)
|
||||
if not result.ok then
|
||||
stdio.ewrite(string.format("Command '%s' failed\n", program))
|
||||
if result.stdout then
|
||||
stdio.ewrite("stdout: ")
|
||||
if #result.stdout > 0 then
|
||||
stdio.ewrite("stdout:\n")
|
||||
stdio.ewrite(result.stdout)
|
||||
stdio.ewrite("\n")
|
||||
end
|
||||
if result.stderr then
|
||||
stdio.ewrite("stderr: ")
|
||||
if #result.stderr > 0 then
|
||||
stdio.ewrite("stderr:\n")
|
||||
stdio.ewrite(result.stderr)
|
||||
stdio.ewrite("\n")
|
||||
end
|
||||
process.exit(1)
|
||||
else
|
||||
if #result.stdout > 0 then
|
||||
stdio.ewrite("stdout:\n")
|
||||
stdio.ewrite(result.stdout)
|
||||
stdio.ewrite("\n")
|
||||
end
|
||||
end
|
||||
return result.stdout
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue