mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
Even friendlier still
This commit is contained in:
parent
ec5625a3fb
commit
ae1ab35ee5
1 changed files with 6 additions and 1 deletions
|
@ -190,7 +190,12 @@ for _, spec in OUTPUT_FILES do
|
||||||
for _, arg in spec.args do
|
for _, arg in spec.args do
|
||||||
table.insert(argsToDisplay, stripCwdIfPresent(arg))
|
table.insert(argsToDisplay, stripCwdIfPresent(arg))
|
||||||
end
|
end
|
||||||
print("\nRunning", spec.command, "with args", table.concat(argsToDisplay, " "))
|
print(
|
||||||
|
"\nRunning compression\n Cmd: ",
|
||||||
|
spec.command,
|
||||||
|
"\n Args: ",
|
||||||
|
stdio.format(table.unpack(argsToDisplay))
|
||||||
|
)
|
||||||
local output = run(spec.command, spec.args)
|
local output = run(spec.command, spec.args)
|
||||||
if #output > 0 then
|
if #output > 0 then
|
||||||
print("Output:", output)
|
print("Output:", output)
|
||||||
|
|
Loading…
Add table
Reference in a new issue