policycoreutils/macros
2026-05-19 19:41:31 -04:00

9 lines
155 B
Plaintext

%add_changelog(changelog:) %{lua:
local f = io.open(arg[1], 'r')
if f then
local content = f:read('*all')
f:close()
print(content)
end
}