Skip to content

Commit

Permalink
Even friendlier still
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed May 11, 2024
1 parent ec5625a commit ae1ab35
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/generate_compression_test_files.luau
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,12 @@ for _, spec in OUTPUT_FILES do
for _, arg in spec.args do
table.insert(argsToDisplay, stripCwdIfPresent(arg))
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)
if #output > 0 then
print("Output:", output)
Expand Down

0 comments on commit ae1ab35

Please sign in to comment.