From 4ac4aa795ab8b6081f5fc1af3b1243c33cf28bc3 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Sun, 11 Sep 2022 18:25:50 +0200 Subject: [PATCH] package/luarocks: use two spaces indentation in hash file Signed-off-by: Francois Perrad Signed-off-by: Yann E. MORIN --- package/luarocks/buildroot.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/luarocks/buildroot.lua b/package/luarocks/buildroot.lua index 2d160f02b6..3c044d89b5 100644 --- a/package/luarocks/buildroot.lua +++ b/package/luarocks/buildroot.lua @@ -265,10 +265,10 @@ local function generate_hash (rockspec, lcname, rock_file, licenses, digest) local f = assert(io.open(fname, 'w')) util.printout('write ' .. fname) f:write('# computed by luarocks/buildroot\n') - f:write('sha256 ' .. digest[rock_file] .. ' ' .. rock_file .. '\n') + f:write('sha256 ' .. digest[rock_file] .. ' ' .. rock_file .. '\n') for i = 1, #licenses do local file = licenses[i] - f:write('sha256 ' .. digest[file] .. ' ' .. subdir .. '/' .. file .. '\n') + f:write('sha256 ' .. digest[file] .. ' ' .. subdir .. '/' .. file .. '\n') end f:close() end